Skip to content

Commit 95834d5

Browse files
committed
add eslint, update nx, fix circle dependencies
1 parent 07f97e2 commit 95834d5

File tree

220 files changed

+19020
-14616
lines changed

Some content is hidden

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

220 files changed

+19020
-14616
lines changed

.eslintrc.json

Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
{
2+
"root": true,
3+
"ignorePatterns": ["**/*"],
4+
"plugins": ["@nrwl/nx"],
5+
"overrides": [
6+
{
7+
"files": ["*.ts", "*.tsx", "*.js", "*.jsx"],
8+
"rules": {
9+
"@nrwl/nx/enforce-module-boundaries": "off"
10+
}
11+
},
12+
{
13+
"files": ["*.ts", "*.tsx"],
14+
"extends": ["plugin:@nrwl/nx/typescript"],
15+
"rules": {
16+
"@typescript-eslint/no-explicit-any": "off",
17+
"@typescript-eslint/no-empty-function": "off",
18+
"@typescript-eslint/no-unused-vars": "off",
19+
"@typescript-eslint/no-var-requires": "off",
20+
"@typescript-eslint/ban-types": "off",
21+
"@typescript-eslint/ban-ts-comment": "off",
22+
"@typescript-eslint/no-this-alias": "off",
23+
"@typescript-eslint/adjacent-overload-signatures": "off",
24+
"@typescript-eslint/no-namespace": "off",
25+
"@typescript-eslint/member-ordering": "off",
26+
"no-useless-escape": "off",
27+
"no-irregular-whitespace": "off",
28+
"no-var": "off",
29+
"no-debugger": "off",
30+
"no-case-declarations": "off",
31+
"no-extra-boolean-cast": "off",
32+
"prefer-const": "off",
33+
"no-constant-condition": "off",
34+
"prefer-rest-params": "off",
35+
"prefer-spread": "off",
36+
"no-async-promise-executor": "off"
37+
}
38+
},
39+
{
40+
"files": ["*.js", "*.jsx"],
41+
"extends": ["plugin:@nrwl/nx/javascript"],
42+
"rules": {}
43+
},
44+
{
45+
"files": ["*.spec.ts", "*.spec.tsx", "*.spec.js", "*.spec.jsx"],
46+
"env": {
47+
"jest": true
48+
},
49+
"rules": {}
50+
}
51+
]
52+
}

.nvmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
10.17.0
1+
lts-gallium

.prettierignore

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
ng2ts
2-
dist
3-
coverage
4-
libs/code-demos/assets/runner/ng2/ng-bundle.js
5-
libs/code-demos/assets/runner/ng-dts/files.txt
1+
/ng2ts
2+
/dist
3+
/coverage
4+
5+
libs/code-demos/assets

0 commit comments

Comments
 (0)