Skip to content

Commit e207b93

Browse files
exclude generated tests from linting
1 parent 4cbc04f commit e207b93

3 files changed

Lines changed: 6 additions & 4 deletions

File tree

.jscsrc

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,9 @@
2020
"allowUrlComments": true
2121
},
2222
"excludeFiles": [
23-
"system-test/data/*",
24-
"test/testdata/*",
23+
"**/src/*/**/*",
24+
"**/system-test/*/**/*",
25+
"**/test/*/**/*",
2526
"**/node_modules/"
2627
]
2728
}

.jshintignore

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1-
**/system-test/data/*
2-
**/test/testdata/*
1+
**/src/*/**/*
2+
**/system-test/*/**/*
3+
**/test/*/**/*
34
**/node_modules/

0 commit comments

Comments
 (0)