-
-
Notifications
You must be signed in to change notification settings - Fork 6.4k
feat(infra): migrate to next.js infrastructure #4981
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Closed
Closed
Changes from all commits
Commits
Show all changes
20 commits
Select commit
Hold shift + click to select a range
3a66d1d
chore(2018-survey): removed codebase from deprecated 2018 survey
ovflowd b63d4d1
chore(scripts): removed metalsmith specific plugins
ovflowd 609974d
chore(source): updated source metadatas
ovflowd 74d9919
chore(meta): updated meta files such as eslint with new configs
ovflowd 5da2b7b
chore(server): removed old server file
ovflowd a7910b1
chore(packages): updated list of packages and scripts
ovflowd 6509029
chore(tests): removed tests for now
ovflowd 8fa26c4
chore(styles): moved styles
ovflowd dbcee64
chore(static): moved static files
ovflowd 1ac0780
chore(layouts): removed unused layouts
ovflowd e0fc2c1
chore(source): moved data files
ovflowd d572a25
chore(meta): updated packages and linting files
ovflowd fed0a2b
chore(files): moved files from `src` to the root
ovflowd 116ea26
chore(static): updated scripts and static files (relinted)
ovflowd b055cd9
chore(eslint): updated eslint rules for markdown
ovflowd 14331d3
chore(config): updated more config entries
ovflowd 89c9437
chore(legacy): moved legacy files to a legacy folder (temporary)
ovflowd d24983a
chore(layouts): moved layouts folder
ovflowd 8562322
feat(i18n): started to add i18n locales and translations
ovflowd 1234aad
feat(pages): started to add the pages
ovflowd File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,9 @@ | ||
# https://editorconfig.org/ | ||
|
||
root = true | ||
|
||
[*] | ||
indent_style = space | ||
indent_size = 2 | ||
end_of_line = lf | ||
insert_final_newline = true | ||
charset = utf-8 | ||
trim_trailing_whitespace = true | ||
|
||
[*.svg] | ||
insert_final_newline = false | ||
insert_final_newline = true |
This file was deleted.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
lts/* |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
{ | ||
"printWidth": 80, | ||
"tabWidth": 2, | ||
"useTabs": false, | ||
"semi": true, | ||
"singleQuote": true, | ||
"jsxSingleQuote": false, | ||
"trailingComma": "es5", | ||
"bracketSpacing": true, | ||
"bracketSameLine": false, | ||
"arrowParens": "avoid" | ||
} |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,14 @@ | ||
{ | ||
"extends": [ | ||
"stylelint-config-twbs-bootstrap" | ||
], | ||
"extends": ["stylelint-config-recommended-scss"], | ||
"plugins": ["stylelint-order", "stylelint-selector-bem-pattern"], | ||
"rules": { | ||
"declaration-no-important": null, | ||
"order/properties-order": null, | ||
"selector-max-id": 1, | ||
"selector-max-type": null, | ||
"selector-no-qualifying-type": null | ||
"order/properties-alphabetical-order": true, | ||
"no-descending-specificity": null, | ||
"scss/at-extend-no-missing-placeholder": null, | ||
"scss/at-import-partial-extension": "always", | ||
"selector-pseudo-class-no-unknown": [ | ||
true, | ||
{ "ignorePseudoClasses": ["global"] } | ||
] | ||
} | ||
} |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Claudio does not forget the
.next
(it is not a priority)