Skip to content

Commit 356075a

Browse files
committed
add config
1 parent 4cee55b commit 356075a

File tree

4,012 files changed

+39
-374237
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

4,012 files changed

+39
-374237
lines changed

.DS_Store

10 KB
Binary file not shown.

.eslintrc.json

+39
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
{
2+
"env": {
3+
"browser": true,
4+
"es2021": true
5+
},
6+
"parser": "@typescript-eslint/parser",
7+
"parserOptions": {
8+
"ecmaVersion": 12,
9+
"sourceType": "module"
10+
},
11+
"plugins": ["@typescript-eslint"],
12+
"rules": {
13+
"constructor-super": "off",
14+
"getter-return": "off",
15+
"no-const-assign": "off",
16+
"no-dupe-args": "off",
17+
"no-dupe-class-members": "off",
18+
"no-dupe-keys": "off",
19+
"no-func-assign": "off",
20+
"no-import-assign": "off",
21+
"no-new-symbol": "off",
22+
"no-obj-calls": "off",
23+
"no-redeclare": "off",
24+
"no-setter-return": "off",
25+
"no-this-before-super": "off",
26+
"no-undef": "off",
27+
"no-unreachable": "off",
28+
"no-unsafe-negation": "off",
29+
"no-var": "error", // ts transpiles let/const to var, so no need for vars any more
30+
"prefer-const": "error", // ts provides better types with const
31+
"prefer-rest-params": "error", // ts provides better types with rest args over arguments
32+
"prefer-spread": "error", // ts transpiles spread to apply, so no need for manual apply
33+
"valid-typeof": "off", // ts(2367)
34+
"indent": ["error", 4],
35+
"linebreak-style": ["error", "unix"],
36+
"quotes": ["error", "single"],
37+
"semi": ["error", "always"]
38+
}
39+
}

README.md

-1
This file was deleted.

node_modules/.bin/acorn

-1
This file was deleted.

node_modules/.bin/eslint

-1
This file was deleted.

node_modules/.bin/esparse

-1
This file was deleted.

node_modules/.bin/esvalidate

-1
This file was deleted.

node_modules/.bin/js-yaml

-1
This file was deleted.

node_modules/.bin/mkdirp

-1
This file was deleted.

node_modules/.bin/node-which

-1
This file was deleted.

node_modules/.bin/rimraf

-1
This file was deleted.

node_modules/.bin/semver

-1
This file was deleted.

node_modules/.yarn-integrity

-134
This file was deleted.

node_modules/@babel/code-frame/LICENSE

-22
This file was deleted.

node_modules/@babel/code-frame/README.md

-19
This file was deleted.

node_modules/@babel/code-frame/lib/index.js

-167
This file was deleted.

node_modules/@babel/code-frame/package.json

-61
This file was deleted.

node_modules/@babel/helper-validator-identifier/LICENSE

-22
This file was deleted.

node_modules/@babel/helper-validator-identifier/README.md

-19
This file was deleted.

0 commit comments

Comments
 (0)