Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
eslint-config-strelka
Advanced tools
Full description coming soon... Based on [JS standard Code Style](http://standardjs.com) with additions (see `index.js`)
Full description coming soon...
Based on JS standard Code Style with additions (see index.js
)
npm i -D eslint babel-eslint eslint-{config-{standard,standard-jsx,strelka},plugin-{meteor,promise,react,standard}} && echo '{ "extends": [ "strelka" ] }' >> .eslintrc && echo '.meteor\nnode_modules\npublic\nprivate' >> .eslintignore && ./node_modules/.bin/eslint . --ext=js,jsx
Install Eslint in project:
$ npm i -D eslint
# and dependencies
$ npm i -D babel-eslint
$ npm i -D eslint-{config-{standard,standard-jsx},plugin-{meteor,promise,react,standard}}
Install strelka config
$ npm i -D eslint-config-strelka
Create .eslintrc
in project folder with following content:
{
"extends": [ "strelka" ]
}
Additionally create .eslintignore
with list of ignored files:
.meteor
node_modules
public
private
Check Code Style ./node_modules/.bin/eslint . --ext=js,jsx
(Optional) Fix some Code Style errors with ./node_modules/.bin/eslint . --fix --ext=js,jsx
npm i -g eslint
SublimeLinter
SublimeLinter-contrib-eslint
SublimeLinter Settings: User
and add this options:"user": {
"linters": {
"eslint": {
"@disable": false,
"args": [
"--ext=js,jsx,vue",
"--env=es6"
],
"excludes": []
}
},
"syntax_map": {
"javascript (babel)": "javascript",
"vue": "javascript"
},
}
FAQs
> Based on [Standard JS](http://standardjs.com)
The npm package eslint-config-strelka receives a total of 5 weekly downloads. As such, eslint-config-strelka popularity was classified as not popular.
We found that eslint-config-strelka demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.