Skip to content

Commit da5e674

Browse files
hoeckmoltar
authored andcommitted
fix spectypes .eslintignore
The node/no-published-import did not fail before because the .gitignore in the spectypes directory. Using the global .gitignore triggers it through - looks like a bug in eslint? Nevertheless for this project the rule is of no use.
1 parent 82ab642 commit da5e674

File tree

4 files changed

+8
-3
lines changed

4 files changed

+8
-3
lines changed

.eslintignore

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
**/node_modules
22
docs/dist
3-
compiled/spectypes/build
3+
cases/spectypes/build

.eslintrc.json

+3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
{
22
"extends": "./node_modules/gts/",
3+
"rules": {
4+
"node/no-unpublished-import": "off"
5+
},
36
"env": {
47
"jest": true
58
}

.gitignore

+4-1
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ typings/
8080
# nuxt.js build output
8181
.nuxt
8282

83-
# react / gatsby
83+
# react / gatsby
8484
public/
8585

8686
# vuepress build output
@@ -99,3 +99,6 @@ public/
9999

100100
# sourcemaps
101101
docs/dist/app.js.map
102+
103+
# spectype build artifacts
104+
cases/spectypes/build

cases/spectypes/.gitignore

-1
This file was deleted.

0 commit comments

Comments
 (0)