Skip to content

Commit

Permalink
exclude history files from js, basic eslint config (YetiForceCompany#…
Browse files Browse the repository at this point in the history
…10195)

* exclude history

* basic eslint conf
  • Loading branch information
rafalpospiech authored and rskrzypczak committed Apr 18, 2019
1 parent d439f77 commit 4622517
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 5 deletions.
5 changes: 5 additions & 0 deletions .eslintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"env": {
"es6": true
}
}
10 changes: 5 additions & 5 deletions jsconfig.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"compilerOptions": {
"baseUrl": "./public_html"
},
"include": ["./public_html/**/*"],
"exclude": ["./cache/**/*", "./public_html/libraries/**/*"]
"compilerOptions": {
"baseUrl": "./public_html"
},
"include": ["./public_html/**/*"],
"exclude": ["./cache/**/*", "./public_html/libraries/**/*", ".history/**/*"]
}

0 comments on commit 4622517

Please sign in to comment.