Skip to content

Commit fb788d7

Browse files
committed
chore: Update project settings
1 parent 136eb31 commit fb788d7

File tree

3 files changed

+14
-5
lines changed

3 files changed

+14
-5
lines changed

.eslintrc.json

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,16 @@
99
"@typescript-eslint"
1010
],
1111
"rules": {
12-
"@typescript-eslint/class-name-casing": "warn",
12+
"@typescript-eslint/naming-convention": "warn",
1313
"@typescript-eslint/semi": "warn",
1414
"curly": "warn",
1515
"eqeqeq": "warn",
1616
"no-throw-literal": "warn",
1717
"semi": "off"
18-
}
18+
},
19+
"ignorePatterns": [
20+
"out",
21+
"dist",
22+
"**/*.d.ts"
23+
]
1924
}

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
out
2+
dist
23
node_modules
34
.vscode-test/
45
*.vsix

.vscodeignore

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,12 @@
11
.vscode/**
22
.vscode-test/**
33
out/test/**
4-
out/**/*.map
4+
55
src/**
66
.gitignore
7-
tsconfig.json
7+
.yarnrc
88
vsc-extension-quickstart.md
9-
tslint.json
9+
**/tsconfig.json
10+
**/.eslintrc.json
11+
**/*.map
12+
**/*.ts

0 commit comments

Comments
 (0)