Skip to content

Commit 257227f

Browse files
authored
Merge pull request processing#7853 from error-four-o-four/chore/upgrade-eslint
Chore/upgrade eslint
2 parents 9515a62 + 8d044e2 commit 257227f

File tree

9 files changed

+6636
-4352
lines changed

9 files changed

+6636
-4352
lines changed

.eslintignore

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

.eslintrc.json

Lines changed: 0 additions & 54 deletions
This file was deleted.

.gitignore

Lines changed: 23 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,31 @@
1-
*.DS_Store
2-
.project
1+
!*.gitkeep
2+
3+
.nyc_output/*
4+
# .vscode/settings.json
35
node_modules/*
6+
7+
analyzer/
8+
bower-repo/
9+
coverage/
10+
examples/3d/
411
experiments/*
12+
dist/
13+
docs/reference/*
14+
docs/data.json
515
lib_old/*
616
lib/p5.*
17+
lib/p5-test.js
718
lib/modules
8-
docs/reference/*
9-
!*.gitkeep
10-
examples/3d/
11-
.idea
12-
dist/
13-
*.d.ts
14-
p5.zip
15-
bower-repo/
1619
p5-website/
17-
.vscode/settings.json
18-
.nyc_output/*
19-
coverage/
20-
lib/p5-test.js
20+
preview/
2121
release/
22+
__screenshots__/
23+
24+
*.d.ts
25+
p5.zip
2226
yarn.lock
23-
docs/data.json
24-
analyzer/
25-
preview/
26-
__screenshots__/
27+
todo.md
28+
29+
*.DS_Store
30+
.idea
31+
.project

.vscode/settings.json

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
{
2+
"prettier.enable": false,
3+
"eslint.enable": true,
4+
"eslint.validate": [
5+
{ "language": "html", "autoFix": false },
6+
{ "language": "javascript", "autoFix": false },
7+
{ "language": "markdown", "autoFix": false },
8+
],
9+
"editor.defaultFormatter": null,
10+
"editor.formatOnSave": false,
11+
"editor.codeActionsOnSave": {},
12+
"javascript.format.enable": false
13+
}

0 commit comments

Comments
 (0)