-
Notifications
You must be signed in to change notification settings - Fork 0
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
Build independant linting system that will automatically lint all repos any repos in MatrixAI once imported #9
Closed
CDeltakai
wants to merge
19
commits into
staging
from
feature-eng-557-create-bundled-config-for-common-rules
Closed
Changes from all commits
Commits
Show all changes
19 commits
Select commit
Hold shift + click to select a range
f6418cb
feat: initial commit
CDeltakai 6b934a1
fix: deleted old index.js file
CDeltakai c8ecb57
fix: update @typescript-eslint dependencies to latest version
CDeltakai 626a974
feat: update ESLint plugin structure and integrate with recommended c…
CDeltakai a482d69
feat: updated all packages in repo including linter and created a fla…
CDeltakai cbe4f51
fix: ran lint f
CDeltakai bd41999
fix: removed bench and test from package as they are unneeded
CDeltakai 16c7e50
fix: changed the config bundle to be js instead of ts, removed the ex…
CDeltakai d25a039
fix: fixed import ordering
CDeltakai ed540cf
wip: replacing config bundle with config from zeta.house, removing pa…
CDeltakai ec8c017
fix: did a lintfix and removed unnecessary comments
CDeltakai d98df43
fix: did a lintfix
CDeltakai f385fa4
fix: fixed up formatting for eslint config
CDeltakai b39e15e
feat: adding generic test files and necessary packages
CDeltakai 5fd8914
wip: fixing up ESM
tegefaulkes ae54301
fix: fixed issue with jest test not working correctly
CDeltakai 99a7bc6
refactor: removed the recommendedTypeaware ruleset and instead merged…
CDeltakai 3073893
fix: removed unused import
CDeltakai bd7cb3b
fix: deleted old .eslintrc file since it was no longer needed
CDeltakai File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains 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,196 @@ | ||
import path from 'path'; | ||
import { fileURLToPath } from 'url'; | ||
import globals from 'globals'; | ||
import _import from 'eslint-plugin-import'; | ||
import js from '@eslint/js'; | ||
import tsParser from '@typescript-eslint/parser'; | ||
import { FlatCompat } from '@eslint/eslintrc'; | ||
import { fixupPluginRules } from '@eslint/compat'; | ||
|
||
// eslint-disable-next-line @typescript-eslint/naming-convention | ||
const __filename = fileURLToPath(import.meta.url); | ||
// eslint-disable-next-line @typescript-eslint/naming-convention | ||
const __dirname = path.dirname(__filename); | ||
const compat = new FlatCompat({ | ||
baseDirectory: __dirname, | ||
recommendedConfig: js.configs.recommended, | ||
allConfig: js.configs.all, | ||
}); | ||
|
||
export default [ | ||
...compat.extends( | ||
'eslint:recommended', | ||
'plugin:@typescript-eslint/recommended', | ||
'plugin:prettier/recommended', | ||
), | ||
{ | ||
plugins: { | ||
import: fixupPluginRules(_import), | ||
}, | ||
languageOptions: { | ||
globals: { | ||
...globals.browser, | ||
...globals.commonjs, | ||
...globals.node, | ||
...globals.jest, | ||
}, | ||
parser: tsParser, | ||
ecmaVersion: 5, | ||
sourceType: 'module', | ||
parserOptions: { | ||
project: ['./tsconfig.json', './src/app/tsconfig.json'], | ||
}, | ||
}, | ||
rules: { | ||
'linebreak-style': ['error', 'unix'], | ||
'no-empty': 1, | ||
'no-useless-catch': 1, | ||
'no-prototype-builtins': 1, | ||
'no-constant-condition': 0, | ||
'no-useless-escape': 0, | ||
'no-console': 'error', | ||
'no-restricted-globals': [ | ||
'error', | ||
{ | ||
name: 'global', | ||
message: 'Use `globalThis` instead', | ||
}, | ||
{ | ||
name: 'window', | ||
message: 'Use `globalThis` instead', | ||
}, | ||
], | ||
'prefer-rest-params': 0, | ||
'require-yield': 0, | ||
eqeqeq: ['error', 'smart'], | ||
'spaced-comment': [ | ||
'warn', | ||
'always', | ||
{ | ||
line: { | ||
exceptions: ['-'], | ||
}, | ||
block: { | ||
exceptions: ['*'], | ||
}, | ||
markers: ['/'], | ||
}, | ||
], | ||
'capitalized-comments': [ | ||
'warn', | ||
'always', | ||
{ | ||
ignoreInlineComments: true, | ||
ignoreConsecutiveComments: true, | ||
}, | ||
], | ||
curly: ['error', 'multi-line', 'consistent'], | ||
'import/order': [ | ||
'error', | ||
{ | ||
groups: [ | ||
'type', | ||
'builtin', | ||
'external', | ||
'internal', | ||
'index', | ||
'sibling', | ||
'parent', | ||
'object', | ||
], | ||
pathGroups: [ | ||
{ | ||
pattern: '@', | ||
group: 'internal', | ||
}, | ||
{ | ||
pattern: '@/**', | ||
group: 'internal', | ||
}, | ||
], | ||
pathGroupsExcludedImportTypes: ['type'], | ||
'newlines-between': 'never', | ||
}, | ||
], | ||
'@typescript-eslint/no-require-imports': 0, | ||
'@typescript-eslint/no-namespace': 0, | ||
'@typescript-eslint/no-explicit-any': 0, | ||
'@typescript-eslint/explicit-module-boundary-types': 0, | ||
'@typescript-eslint/no-floating-promises': [ | ||
'error', | ||
{ | ||
ignoreVoid: true, | ||
ignoreIIFE: true, | ||
}, | ||
], | ||
'@typescript-eslint/no-misused-promises': [ | ||
'error', | ||
{ | ||
checksVoidReturn: false, | ||
}, | ||
], | ||
'@typescript-eslint/await-thenable': ['error'], | ||
'@typescript-eslint/no-unused-vars': [ | ||
'warn', | ||
{ | ||
varsIgnorePattern: '^_', | ||
argsIgnorePattern: '^_', | ||
}, | ||
], | ||
'@typescript-eslint/no-inferrable-types': 0, | ||
'@typescript-eslint/no-non-null-assertion': 0, | ||
'@typescript-eslint/no-this-alias': 0, | ||
'@typescript-eslint/no-var-requires': 0, | ||
'@typescript-eslint/no-empty-function': 0, | ||
'@typescript-eslint/no-empty-interface': 0, | ||
'@typescript-eslint/consistent-type-imports': ['error'], | ||
'@typescript-eslint/consistent-type-exports': ['error'], | ||
'no-throw-literal': 'off', | ||
'@typescript-eslint/no-throw-literal': 'off', | ||
'@typescript-eslint/naming-convention': [ | ||
'error', | ||
{ | ||
selector: 'function', | ||
format: ['camelCase', 'PascalCase'], | ||
leadingUnderscore: 'allow', | ||
trailingUnderscore: 'allowSingleOrDouble', | ||
}, | ||
{ | ||
selector: 'variable', | ||
format: ['camelCase', 'UPPER_CASE', 'PascalCase'], | ||
leadingUnderscore: 'allow', | ||
trailingUnderscore: 'allowSingleOrDouble', | ||
}, | ||
{ | ||
selector: 'parameter', | ||
format: ['camelCase'], | ||
leadingUnderscore: 'allow', | ||
trailingUnderscore: 'allowSingleOrDouble', | ||
}, | ||
{ | ||
selector: 'typeLike', | ||
format: ['PascalCase'], | ||
trailingUnderscore: 'allowSingleOrDouble', | ||
}, | ||
{ | ||
selector: 'enumMember', | ||
format: ['PascalCase', 'UPPER_CASE'], | ||
}, | ||
{ | ||
selector: 'objectLiteralProperty', | ||
format: null, | ||
}, | ||
{ | ||
selector: 'typeProperty', | ||
format: null, | ||
}, | ||
], | ||
'@typescript-eslint/ban-ts-comment': [ | ||
'error', | ||
{ | ||
'ts-ignore': 'allow-with-description', | ||
}, | ||
], | ||
}, | ||
}, | ||
]; |
This file was deleted.
Oops, something went wrong.
This file contains 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
Oops, something went wrong.
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.
The formatting in this file looks kinda weird. Are you sure the linting rules being used for this repo are also following the standards in other repos?