Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,16 @@ matrix:
script: yarn prettier --check "ESSArch_Core/frontend/static/frontend/**/*.{ts,js,scss,html}"
after_success: skip

- name: 'eslint'
stage: lint
language: node_js
node_js: 'lts/*'
before_install: skip
install: yarn install --frozen-lockfile
before_script: skip
script: yarn lint
after_success: skip

- name: 'stylelint'
stage: lint
language: node_js
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@
"pree2e": "yarn run update-webdriver",
"e2e": "protractor e2e-tests/protractor.conf.js",
"prettier": "prettier",
"lint": "eslint \"*/**/*.{js,ts,tsx}\"",
"lint": "eslint \"ESSArch_Core/frontend/static/frontend/scripts/**/*.{js,ts,tsx}\"",
"stylelint": "stylelint \"ESSArch_Core/frontend/static/frontend/styles/**/*.scss\""
}
}