Skip to content

Commit 689f800

Browse files
committed
chore(eslint): update eslint 8 to 9
eslint 9 no longer uses this file
1 parent eb7282d commit 689f800

File tree

6 files changed

+9463
-9376
lines changed

6 files changed

+9463
-9376
lines changed

.eslintignore

Lines changed: 0 additions & 1 deletion
This file was deleted.

.github/workflows/release-publish.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -184,10 +184,10 @@ jobs:
184184
# Release › Print / Lint
185185
# #
186186

187-
- name: "🪪 NPM › Pretty"
187+
- name: "🪪 NPM › Lint"
188188
id: task_release_npm_prettylint
189189
run: |
190-
npm run pretty
190+
npm run lint
191191
192192
# #
193193
# Release › Build
@@ -508,6 +508,7 @@ jobs:
508508
name: >-
509509
🆗 Successful Deployment
510510
runs-on: ubuntu-latest
511+
needs: [ job-initialize, job-release ]
511512
steps:
512513

513514
# #

.prettierignore

Lines changed: 98 additions & 57 deletions
Original file line numberDiff line numberDiff line change
@@ -1,71 +1,112 @@
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+
510
.nyc_output
611
coverage
12+
13+
# #
14+
# Build
15+
# #
16+
17+
.build
18+
backup.sql
19+
build
720
data
21+
dist
822
lock
9-
backup.sql
1023

11-
.git/*
12-
.DS_Store
13-
.npmrc
14-
.yarnclean
24+
# #
25+
# Linter
26+
# #
27+
28+
.editorconfig
1529
.eslintignore
1630
.prettierignore
17-
.upignore
18-
.npmignore
31+
32+
# #
33+
# Git
34+
# #
35+
36+
.git/*
1937
.gitignore
20-
.dockerignore
21-
.yarnrc
22-
.haxt
23-
.flowconfig
38+
39+
# #
40+
# Other
41+
# #
42+
43+
.all-contributorsrc
44+
.DS_Store
2445
.firebaserc
46+
.flowconfig
2547
.graphqlconfig
26-
.editorconfig
48+
.haxt
2749
.serverless
28-
.nvmrc
50+
.upignore
2951

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
3066
license
31-
yarn.lock
32-
Dockerfile.*
33-
Dockerfile
3467

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

eslint.config.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ const tsParser = require('@typescript-eslint/parser');
22
const js = require('@eslint/js');
33
const globals = require('globals');
44
const ts = require('@typescript-eslint/eslint-plugin');
5-
const eslintConfigPrettier = require('eslint-config-prettier');
65
const prettier = require('eslint-plugin-prettier');
76
const stylisticJs = require('@stylistic/eslint-plugin-js');
87
const stylisticTs = require('@stylistic/eslint-plugin-ts');

0 commit comments

Comments
 (0)