Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@namics/eslint-config

Package Overview
Dependencies
Maintainers
3
Versions
40
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@namics/eslint-config

Default configurations for eslint

  • 10.0.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
3
Created
Source

ESLint config

Build Status npm Codestyle

Installation

$ npm install --save-dev eslint eslint-plugin-import @namics/eslint-config
  • @namics/eslint-config/configurations/typescript-browser - typescript + browser
  • @namics/eslint-config/configurations/typescript-react - typescript + react
  • @namics/eslint-config/configurations/typescript-node - typescript + node

package.json

{
  "scripts": {
    "lint:ts": "eslint . --ext .jsx,.js,.ts,.tsx"
  }
}

Enabling ESLint on TS files in VSCode

You need to update the eslint.validate setting to:

"eslint.validate": [
  "javascript",
  "javascriptreact",
  "typescript",
  "typescriptreact"
]

Usage ES8 (ES2017)

  • @namics/eslint-config/configurations/es8-browser - ES8 + browser
  • @namics/eslint-config/configurations/es8-react - ES8 + react
  • @namics/eslint-config/configurations/es8-node - ES8 + node

Usage ES7 (ES2016)

  • @namics/eslint-config/configurations/es7-browser - ES7 + browser (deprecated)
  • @namics/eslint-config/configurations/es7-react - ES7 + react (deprecated)
  • @namics/eslint-config/configurations/es7-node - ES7 + node

Usage ES6 (ES2015) - deprecated

  • @namics/eslint-config/configurations/es6-browser - ES6 + browser (deprecated)
  • @namics/eslint-config/configurations/es6-react - ES6 + react (deprecated)
  • @namics/eslint-config/configurations/es6-node - ES6 + node (deprecated)

Usage with Prettier

.eslintrc.js (add globals here if needed)

module.exports = {
  extends: require.resolve('@namics/eslint-config/configurations/es8-browser.js'),
};

.eslintignore

/.idea/
/node_modules/

package.json

"scripts": {
  "lint": "npm run lint:js",
  "lint:js": "eslint ."
},

then run npm run lint

Example usage in project tree

  • .eslintrc.js (es8-react)
  • .eslintignore
  • src
    • app.jsx
  • test
    • .eslintrc.js (es8-node)
    • index.js
  • scripts
    • .eslintrc.js (es6-node)
    • index.js

Documentation

Build release

  1. Create feature or bugfix branch based on master
  2. Make changes and create pull request, add reviewer, wait for approval
  3. Merge pull request into master
  4. Prepare release notes, adjust package.json to next version ([Semantic Versioning](semantic versioning))
  5. Run npm publish (locally) to create npm version
  6. Create and push git tag for version
  7. Add release notes on GitHub

Thanks to

License

MIT License

Changelog

Please see the Releases

Keywords

FAQs

Package last updated on 24 Dec 2022

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc