We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 76e4fac commit b50cf2fCopy full SHA for b50cf2f
.gitignore
@@ -1,3 +1,4 @@
1
/node_modules
2
+/dist
3
yarn.lock
4
yarn-error.log
package.json
@@ -7,5 +7,8 @@
7
"@types/node": "^14.14.6",
8
"tslint": "^6.1.3",
9
"typescript": "^4.0.5"
10
+ },
11
+ "scripts":{
12
+ "start": "tsc -p src/index.ts"
13
}
14
tslint.json
@@ -0,0 +1,10 @@
+{
+ "defaultSeverity": "error",
+ "extends":[
+ "tsling:recommended"
5
+ ],
6
+ "rules":{
+ "semicolon": false,
+ "trailing-comma": false
+ }
+}
0 commit comments