Fix docs, grunt is removed

This commit is contained in:
rejas 2020-04-28 23:05:47 +02:00
parent e7fc4ef1e7
commit 1eecf4b2c7
2 changed files with 4 additions and 5 deletions

View File

@ -5,7 +5,7 @@ Thanks for contributing to MagicMirror²!
We hold our code to standard, and these standards are documented below. We hold our code to standard, and these standards are documented below.
If you wish to run both linters, use `grunt` without any arguments. If you wish to run our linters, use `npm run lint` without any arguments.
### JavaScript: Run ESLint ### JavaScript: Run ESLint
@ -13,13 +13,13 @@ We use [ESLint](https://eslint.org) on our JavaScript files.
Our ESLint configuration is in our .eslintrc.json and .eslintignore files. Our ESLint configuration is in our .eslintrc.json and .eslintignore files.
To run ESLint, use `grunt eslint`. To run ESLint, use `npm run lint:js`.
### CSS: Run StyleLint ### CSS: Run StyleLint
We use [StyleLint](https://stylelint.io) to lint our CSS. Our configuration is in our .stylelintrc file. We use [StyleLint](https://stylelint.io) to lint our CSS. Our configuration is in our .stylelintrc file.
To run StyleLint, use `grunt stylelint`. To run StyleLint, use `npm run lint:style`.
### Submitting Issues ### Submitting Issues

3
.gitignore vendored
View File

@ -8,7 +8,6 @@ pids
*.seed *.seed
lib-cov lib-cov
coverage coverage
.grunt
.lock-wscript .lock-wscript
build/Release build/Release
/node_modules/**/* /node_modules/**/*
@ -78,4 +77,4 @@ Temporary Items
*.rej *.rej
*.bak *.bak
!/tests/node_modules/**/* !/tests/node_modules/**/*