Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
…ipt-eslint into feature/913-camelcase-add-generic-type-option
  • Loading branch information
a-tarasyuk committed Nov 21, 2019
2 parents ae714b6 + 5b1300d commit acd9af3
Show file tree
Hide file tree
Showing 221 changed files with 93,767 additions and 53,309 deletions.
63 changes: 42 additions & 21 deletions .all-contributorsrc
Original file line number Diff line number Diff line change
Expand Up @@ -58,13 +58,34 @@
"profile": "https://github.com/j-f1",
"contributions": []
},
{
"login": "a-tarasyuk",
"name": "Alexander T.",
"avatar_url": "https://avatars0.githubusercontent.com/u/509265?v=4",
"profile": "https://github.com/a-tarasyuk",
"contributions": []
},
{
"login": "uniqueiniquity",
"name": "Ben Lichtman",
"avatar_url": "https://avatars1.githubusercontent.com/u/9092011?v=4",
"profile": "https://github.com/uniqueiniquity",
"contributions": []
},
{
"login": "scottohara",
"name": "Scott O'Hara",
"avatar_url": "https://avatars3.githubusercontent.com/u/289327?v=4",
"profile": "https://github.com/scottohara",
"contributions": []
},
{
"login": "JoshuaKGoldberg",
"name": "Josh Goldberg",
"avatar_url": "https://avatars1.githubusercontent.com/u/3335181?v=4",
"profile": "https://github.com/JoshuaKGoldberg",
"contributions": []
},
{
"login": "kaicataldo",
"name": "Kai Cataldo",
Expand All @@ -86,13 +107,6 @@
"profile": "https://github.com/mysticatea",
"contributions": []
},
{
"login": "JoshuaKGoldberg",
"name": "Josh Goldberg",
"avatar_url": "https://avatars1.githubusercontent.com/u/3335181?v=4",
"profile": "https://github.com/JoshuaKGoldberg",
"contributions": []
},
{
"login": "azz",
"name": "Lucas Azzola",
Expand All @@ -114,13 +128,6 @@
"profile": "https://github.com/ikatyang",
"contributions": []
},
{
"login": "scottohara",
"name": "Scott O'Hara",
"avatar_url": "https://avatars3.githubusercontent.com/u/289327?v=4",
"profile": "https://github.com/scottohara",
"contributions": []
},
{
"login": "macklinu",
"name": "mackie",
Expand Down Expand Up @@ -177,27 +184,41 @@
"profile": "https://github.com/octogonz",
"contributions": []
},
{
"login": "Retsam",
"name": "Retsam",
"avatar_url": "https://avatars0.githubusercontent.com/u/2281166?v=4",
"profile": "https://github.com/Retsam",
"contributions": []
},
{
"login": "mightyiam",
"name": "Shahar Dawn Or",
"avatar_url": "https://avatars2.githubusercontent.com/u/635591?v=4",
"profile": "https://github.com/mightyiam",
"contributions": []
},
{
"login": "a-tarasyuk",
"name": "Alexander T.",
"avatar_url": "https://avatars0.githubusercontent.com/u/509265?v=4",
"profile": "https://github.com/a-tarasyuk",
"contributions": []
},
{
"login": "webschik",
"name": "Denys Kniazevych",
"avatar_url": "https://avatars2.githubusercontent.com/u/1665314?v=4",
"profile": "https://github.com/webschik",
"contributions": []
},
{
"login": "Validark",
"name": "Niles",
"avatar_url": "https://avatars2.githubusercontent.com/u/15217173?v=4",
"profile": "https://github.com/Validark",
"contributions": []
},
{
"login": "pablobirukov",
"name": "Pavel Birukov ",
"avatar_url": "https://avatars2.githubusercontent.com/u/1861546?v=4",
"profile": "https://github.com/pablobirukov",
"contributions": []
},
{
"login": "flying-sheep",
"name": "Philipp A.",
Expand Down
5 changes: 4 additions & 1 deletion .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ module.exports = {
//

'@typescript-eslint/consistent-type-definitions': ['error', 'interface'],
'@typescript-eslint/explicit-function-return-type': 'error',
'@typescript-eslint/no-explicit-any': 'error',
'@typescript-eslint/no-non-null-assertion': 'off',
'@typescript-eslint/no-use-before-define': 'off',
Expand All @@ -34,6 +35,7 @@ module.exports = {
//

'comma-dangle': ['error', 'always-multiline'],
'constructor-super': 'off',
curly: ['error', 'all'],
'no-mixed-operators': 'error',
'no-console': 'error',
Expand Down Expand Up @@ -112,7 +114,8 @@ module.exports = {
ecmaFeatures: {
jsx: false,
},
project: './tsconfig.base.json',
project: ['./tsconfig.eslint.json', './packages/*/tsconfig.json'],
tsconfigRootDir: __dirname,
},
overrides: [
{
Expand Down
9 changes: 6 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -57,9 +57,12 @@ jspm_packages/
# next.js build output
.next

.DS_Store
.idea
dist

# Editor-specific metadata folders
.vs

.DS_Store
.idea
dist
*.tsbuildinfo
.watchmanconfig
33 changes: 33 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,45 @@
"program": "${workspaceFolder}/node_modules/jest/bin/jest.js",
"args": [
"--runInBand",
"--no-coverage",
// needs the '' around it so that the () are properly handled
"'tests/(.+/)?${fileBasenameNoExtension}'"
],
"sourceMaps": true,
"console": "integratedTerminal",
"internalConsoleOptions": "neverOpen"
},
{
"type": "node",
"request": "launch",
"name": "Run currently opened typescript-estree test",
"cwd": "${workspaceFolder}/packages/typescript-estree/",
"program": "${workspaceFolder}/node_modules/jest/bin/jest.js",
"args": [
"--runInBand",
"--no-cache",
"--no-coverage",
"${relativeFile}"
],
"sourceMaps": true,
"console": "integratedTerminal",
"internalConsoleOptions": "neverOpen"
},
{
"type": "node",
"request": "launch",
"name": "Run currently opened parser test",
"cwd": "${workspaceFolder}/packages/parser/",
"program": "${workspaceFolder}/node_modules/jest/bin/jest.js",
"args": [
"--runInBand",
"--no-cache",
"--no-coverage",
"${relativeFile}"
],
"sourceMaps": true,
"console": "integratedTerminal",
"internalConsoleOptions": "neverOpen"
}
]
}
3 changes: 2 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,5 +22,6 @@
"javascript.preferences.importModuleSpecifier": "auto",
"typescript.preferences.importModuleSpecifier": "auto",
"javascript.preferences.quoteStyle": "single",
"typescript.preferences.quoteStyle": "single"
"typescript.preferences.quoteStyle": "single",
"editor.defaultFormatter": "esbenp.prettier-vscode"
}

0 comments on commit acd9af3

Please sign in to comment.