Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upgrade ESLint to 6.x #3181

Merged
merged 10 commits into from
Jun 23, 2020
Merged
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
3 changes: 2 additions & 1 deletion .npmignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,5 @@
!README.md
!bin/addons-linter
!dist/addons-linter.*
!dist/locale/**
!dist/locale/**
!dist/rules/**
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ node_js:
- 'v10.21.0'
- 'v12.18.1'
script:
- npm run test-ci
- node scripts/build-locales
- npm run build
- npm run test-ci
- npm run lint
# run integration tests using an addons-linter binary in a production-like environment
- npm run test-integration:production
Expand Down
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,8 @@ If you have Node.js installed, here's the quick start to getting your developmen
git clone https://github.com/mozilla/addons-linter.git
cd addons-linter
npm install
# Build the project.
npm run build
# Run the test-suite and watch for changes. Use `npm run test-once` to
# just run it once.
npm run test
Expand Down Expand Up @@ -156,7 +158,7 @@ Dependencies are automatically kept up-to-date using [renovatebot](https://renov

### Building

You can run `npm build` to build the library.
You can run `npm run build` to build the library.

Once you build the library you can use the CLI in `bin/addons-linter`.

Expand Down
Loading