File tree Expand file tree Collapse file tree 6 files changed +9463
-9376
lines changed Expand file tree Collapse file tree 6 files changed +9463
-9376
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -184,10 +184,10 @@ jobs:
184
184
# Release › Print / Lint
185
185
# #
186
186
187
- - name : " 🪪 NPM › Pretty "
187
+ - name : " 🪪 NPM › Lint "
188
188
id : task_release_npm_prettylint
189
189
run : |
190
- npm run pretty
190
+ npm run lint
191
191
192
192
# #
193
193
# Release › Build
@@ -508,6 +508,7 @@ jobs:
508
508
name : >-
509
509
🆗 Successful Deployment
510
510
runs-on : ubuntu-latest
511
+ needs : [ job-initialize, job-release ]
511
512
steps :
512
513
513
514
# #
Original file line number Diff line number Diff line change 1
- dist
2
- build
3
- .build
4
- logfile
1
+ # #
2
+ # @usage ignore listed extensions / files from having pretty / prettier linting ran on them
3
+ # @file .prettierignore
4
+ # #
5
+
6
+ # #
7
+ # Tests
8
+ # #
9
+
5
10
.nyc_output
6
11
coverage
12
+
13
+ # #
14
+ # Build
15
+ # #
16
+
17
+ .build
18
+ backup.sql
19
+ build
7
20
data
21
+ dist
8
22
lock
9
- backup.sql
10
23
11
- .git /*
12
- .DS_Store
13
- .npmrc
14
- .yarnclean
24
+ # #
25
+ # Linter
26
+ # #
27
+
28
+ .editorconfig
15
29
.eslintignore
16
30
.prettierignore
17
- .upignore
18
- .npmignore
31
+
32
+ # #
33
+ # Git
34
+ # #
35
+
36
+ .git /*
19
37
.gitignore
20
- .dockerignore
21
- .yarnrc
22
- .haxt
23
- .flowconfig
38
+
39
+ # #
40
+ # Other
41
+ # #
42
+
43
+ .all-contributorsrc
44
+ .DS_Store
24
45
.firebaserc
46
+ .flowconfig
25
47
.graphqlconfig
26
- .editorconfig
48
+ .haxt
27
49
.serverless
28
- .nvmrc
50
+ .upignore
29
51
52
+ # #
53
+ # Docker / Node
54
+ # #
55
+
56
+ ** /* .Dockerfile
57
+ ** /* .Dockerfile. *
58
+ ** /* .yarn.lock
59
+ ** /* .yarnclean
60
+ ** /* .yarnrc
61
+ package-lock.json
62
+ .dockerignore
63
+ .npmignore
64
+ .npmrc
65
+ .nvmrc
30
66
license
31
- yarn.lock
32
- Dockerfile. *
33
- Dockerfile
34
67
35
- _env *
36
- .env. *
37
- * .env
38
- * .ico
39
- * .html
40
- * .xml
41
- * .log
42
- * .svg
43
- * .map
44
- * .png
45
- * .snap
46
- * .txt
47
- * .sketch
48
- * .ttf
49
- * .eot
50
- * .ttf
51
- * .woff
52
- * .woff2
53
- * .out
54
- * .dms
55
- * .sh
56
- * .tar.gz
57
- * .pem
58
- * .jpg
59
- * .gif
60
- * .graphcool
61
- * .re
62
- * .wasm
63
- * .yml
64
- * .toml
65
- * .jar
66
- * .zip
67
- * .tab
68
- * .ldb
69
- * .opts
70
- * .dat
71
- * .conf
68
+ # #
69
+ # Recursive
70
+ # #
71
+
72
+ ** /* ._env *
73
+ ** /* .conf
74
+ ** /* .dat
75
+ ** /* .dms
76
+ ** /* .env
77
+ ** /* .env. *
78
+ ** /* .eot
79
+ ** /* .gif
80
+ ** /* .graphcool
81
+ ** /* .hbs
82
+ ** /* .html
83
+ ** /* .ico
84
+ ** /* .jar
85
+ ** /* .jpg
86
+ ** /* .ldb
87
+ ** /* .log
88
+ ** /* .logfile
89
+ ** /* .map
90
+ ** /* .md
91
+ ** /* .opts
92
+ ** /* .out
93
+ ** /* .pem
94
+ ** /* .png
95
+ ** /* .re
96
+ ** /* .scss
97
+ ** /* .sh
98
+ ** /* .sketch
99
+ ** /* .snap
100
+ ** /* .svg
101
+ ** /* .tab
102
+ ** /* .tar.gz
103
+ ** /* .toml
104
+ ** /* .ttf
105
+ ** /* .ttf
106
+ ** /* .txt
107
+ ** /* .wasm
108
+ ** /* .woff
109
+ ** /* .woff2
110
+ ** /* .xml
111
+ ** /* .yml
112
+ ** /* .zip
Original file line number Diff line number Diff line change @@ -2,7 +2,6 @@ const tsParser = require('@typescript-eslint/parser');
2
2
const js = require ( '@eslint/js' ) ;
3
3
const globals = require ( 'globals' ) ;
4
4
const ts = require ( '@typescript-eslint/eslint-plugin' ) ;
5
- const eslintConfigPrettier = require ( 'eslint-config-prettier' ) ;
6
5
const prettier = require ( 'eslint-plugin-prettier' ) ;
7
6
const stylisticJs = require ( '@stylistic/eslint-plugin-js' ) ;
8
7
const stylisticTs = require ( '@stylistic/eslint-plugin-ts' ) ;
You can’t perform that action at this time.
0 commit comments