Skip to content

Commit 72f43be

Browse files
anubhav7495addyosmani
authored andcommitted
eslintignore and gitignore file improvements (#103)
1 parent e943540 commit 72f43be

File tree

2 files changed

+10
-5
lines changed

2 files changed

+10
-5
lines changed

template/.eslintignore

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,7 @@
1-
build/*.js
2-
config/*.js
1+
/build/
2+
/config/
3+
/dist/
4+
/*.js
5+
{{#unit}}
6+
/test/unit/coverage/
7+
{{/unit}}

template/.gitignore

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
.DS_Store
22
node_modules/
3-
dist/
3+
/dist/
44
npm-debug.log*
55
yarn-debug.log*
66
yarn-error.log*
77
{{#unit}}
8-
test/unit/coverage
8+
/test/unit/coverage
99
{{/unit}}
1010
{{#e2e}}
11-
test/e2e/reports
11+
/test/e2e/reports
1212
selenium-debug.log
1313
{{/e2e}}
1414

0 commit comments

Comments
 (0)