Skip to content

Commit f385fa4

Browse files
committed
fix: fixed up formatting for eslint config
1 parent d98df43 commit f385fa4

File tree

2 files changed

+157
-166
lines changed

2 files changed

+157
-166
lines changed

eslint.config.mjs

+157-165
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,15 @@
1-
import _import from 'eslint-plugin-import';
1+
import path from 'path';
2+
import { fileURLToPath } from 'url';
23
import globals from 'globals';
3-
import tsParser from '@typescript-eslint/parser';
4-
import path from 'node:path';
4+
import _import from 'eslint-plugin-import';
55
import js from '@eslint/js';
6+
import tsParser from '@typescript-eslint/parser';
67
import { FlatCompat } from '@eslint/eslintrc';
7-
import { fileURLToPath } from 'node:url';
8-
import { fixupConfigRules, fixupPluginRules } from '@eslint/compat';
8+
import { fixupPluginRules } from '@eslint/compat';
99

10+
// eslint-disable-next-line @typescript-eslint/naming-convention
1011
const __filename = fileURLToPath(import.meta.url);
12+
// eslint-disable-next-line @typescript-eslint/naming-convention
1113
const __dirname = path.dirname(__filename);
1214
const compat = new FlatCompat({
1315
baseDirectory: __dirname,
@@ -16,189 +18,179 @@ const compat = new FlatCompat({
1618
});
1719

1820
export default [
19-
...fixupConfigRules(
20-
compat.extends(
21-
'eslint:recommended',
22-
'plugin:@typescript-eslint/recommended',
23-
'plugin:prettier/recommended',
24-
),
21+
...compat.extends(
22+
'eslint:recommended',
23+
'plugin:@typescript-eslint/recommended',
24+
'plugin:prettier/recommended',
2525
),
2626
{
2727
plugins: {
2828
import: fixupPluginRules(_import),
2929
},
30-
3130
languageOptions: {
3231
globals: {
3332
...globals.browser,
3433
...globals.commonjs,
3534
...globals.node,
3635
...globals.jest,
3736
},
38-
3937
parser: tsParser,
4038
ecmaVersion: 5,
4139
sourceType: 'module',
42-
4340
parserOptions: {
4441
project: ['./tsconfig.json', './src/app/tsconfig.json'],
4542
},
4643
},
47-
4844
rules: {
49-
"linebreak-style": ["error", "unix"],
50-
"no-empty": 1,
51-
"no-useless-catch": 1,
52-
"no-prototype-builtins": 1,
53-
"no-constant-condition": 0,
54-
"no-useless-escape": 0,
55-
"no-console": "error",
56-
"no-restricted-globals": [
57-
"error",
58-
{
59-
"name": "global",
60-
"message": "Use `globalThis` instead"
61-
},
62-
{
63-
"name": "window",
64-
"message": "Use `globalThis` instead"
65-
}
66-
],
67-
"require-yield": 0,
68-
"eqeqeq": ["error", "smart"],
69-
"spaced-comment": [
70-
"warn",
71-
"always",
72-
{
73-
"line": {
74-
"exceptions": ["-"]
75-
},
76-
"block": {
77-
"exceptions": ["*"]
78-
},
79-
"markers": ["/"]
80-
}
81-
],
82-
"capitalized-comments": [
83-
"warn",
84-
"always",
85-
{
86-
"ignoreInlineComments": true,
87-
"ignoreConsecutiveComments": true
88-
}
89-
],
90-
"curly": [
91-
"error",
92-
"multi-line",
93-
"consistent"
94-
],
95-
"import/order": [
96-
"error",
97-
{
98-
"groups": [
99-
"type",
100-
"builtin",
101-
"external",
102-
"internal",
103-
"index",
104-
"sibling",
105-
"parent",
106-
"object"
107-
],
108-
"pathGroups": [
45+
'linebreak-style': ['error', 'unix'],
46+
'no-empty': 1,
47+
'no-useless-catch': 1,
48+
'no-prototype-builtins': 1,
49+
'no-constant-condition': 0,
50+
'no-useless-escape': 0,
51+
'no-console': 'error',
52+
'no-restricted-globals': [
53+
'error',
54+
{
55+
name: 'global',
56+
message: 'Use `globalThis` instead',
57+
},
58+
{
59+
name: 'window',
60+
message: 'Use `globalThis` instead',
61+
},
62+
],
63+
'prefer-rest-params': 0,
64+
'require-yield': 0,
65+
eqeqeq: ['error', 'smart'],
66+
'spaced-comment': [
67+
'warn',
68+
'always',
69+
{
70+
line: {
71+
exceptions: ['-'],
72+
},
73+
block: {
74+
exceptions: ['*'],
75+
},
76+
markers: ['/'],
77+
},
78+
],
79+
'capitalized-comments': [
80+
'warn',
81+
'always',
82+
{
83+
ignoreInlineComments: true,
84+
ignoreConsecutiveComments: true,
85+
},
86+
],
87+
curly: ['error', 'multi-line', 'consistent'],
88+
'import/order': [
89+
'error',
90+
{
91+
groups: [
92+
'type',
93+
'builtin',
94+
'external',
95+
'internal',
96+
'index',
97+
'sibling',
98+
'parent',
99+
'object',
100+
],
101+
pathGroups: [
109102
{
110-
"pattern": "@",
111-
"group": "internal"
103+
pattern: '@',
104+
group: 'internal',
112105
},
113106
{
114-
"pattern": "@/**",
115-
"group": "internal"
116-
}
117-
],
118-
"pathGroupsExcludedImportTypes": [
119-
"type"
120-
],
121-
"newlines-between": "never"
122-
}
123-
],
124-
"@typescript-eslint/no-namespace": 0,
125-
"@typescript-eslint/no-explicit-any": 0,
126-
"@typescript-eslint/explicit-module-boundary-types": 0,
127-
"@typescript-eslint/no-unused-vars": [
128-
"warn",
129-
{
130-
"varsIgnorePattern": "^_",
131-
"argsIgnorePattern": "^_"
132-
}
133-
],
134-
"@typescript-eslint/no-inferrable-types": 0,
135-
"@typescript-eslint/no-non-null-assertion": 0,
136-
"@typescript-eslint/no-this-alias": 0,
137-
"@typescript-eslint/no-var-requires": 0,
138-
"@typescript-eslint/no-empty-function": 0,
139-
"@typescript-eslint/no-empty-interface": 0,
140-
"@typescript-eslint/consistent-type-imports": ["error"],
141-
"@typescript-eslint/consistent-type-exports": ["error"],
142-
"no-throw-literal": "off",
143-
"@typescript-eslint/no-throw-literal": "off",
144-
"@typescript-eslint/no-floating-promises": ["error", {
145-
"ignoreVoid": true,
146-
"ignoreIIFE": true
147-
}],
148-
"@typescript-eslint/no-misused-promises": ["error", {
149-
"checksVoidReturn": false
150-
}],
151-
"@typescript-eslint/await-thenable": ["error"],
152-
"@typescript-eslint/naming-convention": [
153-
"error",
154-
{
155-
"selector": "default",
156-
"format": ["camelCase"],
157-
"leadingUnderscore": "allow",
158-
"trailingUnderscore": "allowSingleOrDouble"
159-
},
160-
{
161-
"selector": "function",
162-
"format": ["camelCase", "PascalCase"],
163-
"leadingUnderscore": "allow",
164-
"trailingUnderscore": "allowSingleOrDouble"
165-
},
166-
{
167-
"selector": "variable",
168-
"format": ["camelCase", "UPPER_CASE", "PascalCase"],
169-
"leadingUnderscore": "allow",
170-
"trailingUnderscore": "allowSingleOrDouble"
171-
},
172-
{
173-
"selector": "parameter",
174-
"format": ["camelCase"],
175-
"leadingUnderscore": "allow",
176-
"trailingUnderscore": "allowSingleOrDouble"
177-
},
178-
{
179-
"selector": "typeLike",
180-
"format": ["PascalCase"],
181-
"trailingUnderscore": "allowSingleOrDouble"
182-
},
183-
{
184-
"selector": "enumMember",
185-
"format": ["PascalCase", "UPPER_CASE"]
186-
},
187-
{
188-
"selector": "objectLiteralProperty",
189-
"format": null
190-
},
191-
{
192-
"selector": "typeProperty",
193-
"format": null
194-
}
195-
],
196-
"@typescript-eslint/ban-ts-comment": [
197-
"error",
198-
{
199-
"ts-ignore": "allow-with-description"
200-
}
201-
]
107+
pattern: '@/**',
108+
group: 'internal',
109+
},
110+
],
111+
pathGroupsExcludedImportTypes: ['type'],
112+
'newlines-between': 'never',
113+
},
114+
],
115+
'@typescript-eslint/no-require-imports': 0,
116+
'@typescript-eslint/no-namespace': 0,
117+
'@typescript-eslint/no-explicit-any': 0,
118+
'@typescript-eslint/explicit-module-boundary-types': 0,
119+
'@typescript-eslint/no-floating-promises': [
120+
'error',
121+
{
122+
ignoreVoid: true,
123+
ignoreIIFE: true,
124+
},
125+
],
126+
'@typescript-eslint/no-misused-promises': [
127+
'error',
128+
{
129+
checksVoidReturn: false,
130+
},
131+
],
132+
'@typescript-eslint/await-thenable': ['error'],
133+
'@typescript-eslint/no-unused-vars': [
134+
'warn',
135+
{
136+
varsIgnorePattern: '^_',
137+
argsIgnorePattern: '^_',
138+
},
139+
],
140+
'@typescript-eslint/no-inferrable-types': 0,
141+
'@typescript-eslint/no-non-null-assertion': 0,
142+
'@typescript-eslint/no-this-alias': 0,
143+
'@typescript-eslint/no-var-requires': 0,
144+
'@typescript-eslint/no-empty-function': 0,
145+
'@typescript-eslint/no-empty-interface': 0,
146+
'@typescript-eslint/consistent-type-imports': ['error'],
147+
'@typescript-eslint/consistent-type-exports': ['error'],
148+
'no-throw-literal': 'off',
149+
'@typescript-eslint/no-throw-literal': 'off',
150+
'@typescript-eslint/naming-convention': [
151+
'error',
152+
{
153+
selector: 'function',
154+
format: ['camelCase', 'PascalCase'],
155+
leadingUnderscore: 'allow',
156+
trailingUnderscore: 'allowSingleOrDouble',
157+
},
158+
{
159+
selector: 'variable',
160+
format: ['camelCase', 'UPPER_CASE', 'PascalCase'],
161+
leadingUnderscore: 'allow',
162+
trailingUnderscore: 'allowSingleOrDouble',
163+
},
164+
{
165+
selector: 'parameter',
166+
format: ['camelCase'],
167+
leadingUnderscore: 'allow',
168+
trailingUnderscore: 'allowSingleOrDouble',
169+
},
170+
{
171+
selector: 'typeLike',
172+
format: ['PascalCase'],
173+
trailingUnderscore: 'allowSingleOrDouble',
174+
},
175+
{
176+
selector: 'enumMember',
177+
format: ['PascalCase', 'UPPER_CASE'],
178+
},
179+
{
180+
selector: 'objectLiteralProperty',
181+
format: null,
182+
},
183+
{
184+
selector: 'typeProperty',
185+
format: null,
186+
},
187+
],
188+
'@typescript-eslint/ban-ts-comment': [
189+
'error',
190+
{
191+
'ts-ignore': 'allow-with-description',
192+
},
193+
],
202194
},
203195
},
204196
];

src/rules/no-aliased-imports.ts

-1
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,6 @@ export const noAliasedImportsRule: RuleModule<
6969
autoFix = false,
7070
} = options;
7171
return {
72-
// eslint-disable-next-line @typescript-eslint/naming-convention
7372
ImportDeclaration(node) {
7473
const importPath = node.source.value;
7574

0 commit comments

Comments
 (0)