-
-
Notifications
You must be signed in to change notification settings - Fork 90
/
.eslintrc.yaml
73 lines (71 loc) · 2.15 KB
/
.eslintrc.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
root: true
env:
es2023: true
parser: "@babel/eslint-parser"
parserOptions:
sourceType: module
requireConfigFile: false
babelOptions:
plugins:
- "@babel/plugin-syntax-import-attributes"
extends:
- eslint:recommended
- plugin:import/errors
- plugin:import/warnings
- plugin:prettier/recommended
globals:
__DEV__: readonly
pkg: readonly
# gjs
ARGV: readonly
Debugger: readonly
GIRepositoryGType: readonly
globalThis: readonly
imports: readonly
Intl: readonly
log: readonly
logError: readonly
print: readonly
printerr: readonly
window: readonly
TextEncoder: readonly
TextDecoder: readonly
console: readonly
setTimeout: readonly
setInterval: readonly
clearTimeout: readonly
clearInterval: readonly
rules:
# Possible Problems
# https://eslint.org/docs/latest/rules/#possible-problems
array-callback-return: [error] # https://eslint.org/docs/latest/rules/array-callback-return
no-duplicate-imports: [error] # https://eslint.org/docs/latest/rules/no-duplicate-imports
no-new-native-nonconstructor: [error] # https://eslint.org/docs/latest/rules/no-new-native-nonconstructor
no-restricted-globals: # https://eslint.org/docs/rules/no-restricted-globals
- error
- window
- printerr
- print
- imports
- logError
- log
no-unused-vars: # https://eslint.org/docs/latest/rules/no-unused-vars
- error
- vars: all
args: all
argsIgnorePattern: "^_"
# Suggestions
# https://eslint.org/docs/latest/rules/#suggestions
eqeqeq: [error, always] # https://eslint.org/docs/rules/eqeqeq
no-implicit-globals: [error] # https://eslint.org/docs/latest/rules/no-implicit-globals
no-var: [error] # https://eslint.org/docs/rules/no-var
prefer-arrow-callback: [
error,
{ allowNamedFunctions: true, allowUnboundThis: true },
] # https://eslint.org/docs/rules/prefer-arrow-callback
prefer-const: [error] # https://eslint.org/docs/rules/prefer-const
# eslint-plugin-import
# https://github.com/benmosher/eslint-plugin-import/
import/extensions: ["error", "ignorePackages"]
import/no-unresolved:
[2, { ignore: ["gi://*", "resource://*", "cairo", "gettext", "system"] }]