@nfq/eslint-config 4.0.0-beta.16 → 4.0.0-beta.18
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/esm/rules/typescript/overrides/eslint.js +0 -14
- package/dist/esm/rules/typescript/overrides/eslint.js.map +1 -1
- package/dist/index.js +0 -14
- package/dist/index.js.map +1 -1
- package/dist/rules/common/eslint/index.js +378 -0
- package/dist/rules/common/eslint/index.js.map +1 -0
- package/dist/rules/common/plugins/index.js +602 -0
- package/dist/rules/common/plugins/index.js.map +1 -0
- package/dist/rules/cypress/overrides/index.js +18 -0
- package/dist/rules/cypress/overrides/index.js.map +1 -0
- package/dist/rules/cypress/plugins/index.js +31 -0
- package/dist/rules/cypress/plugins/index.js.map +1 -0
- package/dist/rules/node/plugins/index.js +48 -0
- package/dist/rules/node/plugins/index.js.map +1 -0
- package/dist/rules/react/plugins/index.js +351 -0
- package/dist/rules/react/plugins/index.js.map +1 -0
- package/dist/rules/storybook/overrides/index.js +16 -0
- package/dist/rules/storybook/overrides/index.js.map +1 -0
- package/dist/rules/typescript/overrides/index.js +45 -0
- package/dist/rules/typescript/overrides/index.js.map +1 -0
- package/dist/rules/typescript/plugins/index.js +164 -0
- package/dist/rules/typescript/plugins/index.js.map +1 -0
- package/package.json +14 -1
- package/types/index.d.ts +126 -42
- package/types/rules/typescript/overrides/eslint.d.ts +0 -14
- package/types/rules/typescript/overrides/index.d.ts +0 -14
|
@@ -1,18 +1,4 @@
|
|
|
1
1
|
const eslint = {
|
|
2
|
-
'@stylistic/brace-style': 'off',
|
|
3
|
-
'@stylistic/comma-dangle': 'off',
|
|
4
|
-
'@stylistic/comma-spacing': 'off',
|
|
5
|
-
'@stylistic/function-call-spacing': 'off',
|
|
6
|
-
'@stylistic/keyword-spacing': 'off',
|
|
7
|
-
'@stylistic/lines-between-class-members': 'off',
|
|
8
|
-
'@stylistic/no-extra-semi': 'off',
|
|
9
|
-
'@stylistic/object-curly-spacing': 'off',
|
|
10
|
-
'@stylistic/padding-line-between-statements': 'off',
|
|
11
|
-
'@stylistic/quotes': 'off',
|
|
12
|
-
'@stylistic/semi': 'off',
|
|
13
|
-
'@stylistic/space-before-blocks': 'off',
|
|
14
|
-
'@stylistic/space-before-function-paren': 'off',
|
|
15
|
-
'@stylistic/space-infix-ops': 'off',
|
|
16
2
|
'default-param-last': 'off',
|
|
17
3
|
'dot-notation': 'off',
|
|
18
4
|
'jsdoc/require-param-type': 'off',
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"eslint.js","sources":["../../../../../src/rules/typescript/overrides/eslint.ts"],"sourcesContent":["export const eslint = {\n '
|
|
1
|
+
{"version":3,"file":"eslint.js","sources":["../../../../../src/rules/typescript/overrides/eslint.ts"],"sourcesContent":["export const eslint = {\n 'default-param-last': 'off',\n 'dot-notation': 'off',\n 'jsdoc/require-param-type': 'off',\n 'jsdoc/require-returns-type': 'off',\n 'no-array-constructor': 'off',\n 'no-dupe-class-members': 'off',\n 'no-empty-function': 'off',\n 'no-implied-eval': 'off',\n 'no-invalid-this': 'off',\n 'no-loop-func': 'off',\n 'no-loss-of-precision': 'off',\n 'no-redeclare': 'off',\n 'no-return-await': 'off',\n 'no-shadow': 'off',\n 'no-throw-literal': 'off',\n 'no-undefined': 'off',\n 'no-unused-expressions': 'off',\n 'no-unused-vars': 'off',\n 'no-use-before-define': 'off',\n 'no-useless-constructor': 'off'\n};"],"names":["eslint"],"mappings":"AAAO,MAAMA,MAAM,GAAG;AAClB,EAAA,oBAAoB,EAAE,KAAK;AAC3B,EAAA,cAAc,EAAE,KAAK;AACrB,EAAA,0BAA0B,EAAE,KAAK;AACjC,EAAA,4BAA4B,EAAE,KAAK;AACnC,EAAA,sBAAsB,EAAE,KAAK;AAC7B,EAAA,uBAAuB,EAAE,KAAK;AAC9B,EAAA,mBAAmB,EAAE,KAAK;AAC1B,EAAA,iBAAiB,EAAE,KAAK;AACxB,EAAA,iBAAiB,EAAE,KAAK;AACxB,EAAA,cAAc,EAAE,KAAK;AACrB,EAAA,sBAAsB,EAAE,KAAK;AAC7B,EAAA,cAAc,EAAE,KAAK;AACrB,EAAA,iBAAiB,EAAE,KAAK;AACxB,EAAA,WAAW,EAAE,KAAK;AAClB,EAAA,kBAAkB,EAAE,KAAK;AACzB,EAAA,cAAc,EAAE,KAAK;AACrB,EAAA,uBAAuB,EAAE,KAAK;AAC9B,EAAA,gBAAgB,EAAE,KAAK;AACvB,EAAA,sBAAsB,EAAE,KAAK;AAC7B,EAAA,wBAAwB,EAAE;AAC9B;;;;"}
|
package/dist/index.js
CHANGED
|
@@ -1446,20 +1446,6 @@ const reactPluginRules = {
|
|
|
1446
1446
|
};
|
|
1447
1447
|
|
|
1448
1448
|
const eslint = {
|
|
1449
|
-
'@stylistic/brace-style': 'off',
|
|
1450
|
-
'@stylistic/comma-dangle': 'off',
|
|
1451
|
-
'@stylistic/comma-spacing': 'off',
|
|
1452
|
-
'@stylistic/function-call-spacing': 'off',
|
|
1453
|
-
'@stylistic/keyword-spacing': 'off',
|
|
1454
|
-
'@stylistic/lines-between-class-members': 'off',
|
|
1455
|
-
'@stylistic/no-extra-semi': 'off',
|
|
1456
|
-
'@stylistic/object-curly-spacing': 'off',
|
|
1457
|
-
'@stylistic/padding-line-between-statements': 'off',
|
|
1458
|
-
'@stylistic/quotes': 'off',
|
|
1459
|
-
'@stylistic/semi': 'off',
|
|
1460
|
-
'@stylistic/space-before-blocks': 'off',
|
|
1461
|
-
'@stylistic/space-before-function-paren': 'off',
|
|
1462
|
-
'@stylistic/space-infix-ops': 'off',
|
|
1463
1449
|
'default-param-last': 'off',
|
|
1464
1450
|
'dot-notation': 'off',
|
|
1465
1451
|
'jsdoc/require-param-type': 'off',
|