
Security News
Django Joins curl in Pushing Back on AI Slop Security Reports
Django has updated its security policies to reject AI-generated vulnerability reports that include fabricated or unverifiable content.
eslint-config-foray1010
Advanced tools
X for upgrading eslint or node engine (breaking changes)
Y for adding rules/options (more strict)
Z for removing rules/options (more loose)
If you want to install in the existing repository:
npm install --save-dev eslint eslint-config-foray1010
Create a .eslintrc.yml
in the project root
# for general purpose
extends: "eslint-config-foray1010"
# for general purpose with typescript support
extends: "eslint-config-foray1010/typescript"
# for frontend react project with typescript support
extends: "eslint-config-foray1010/typescript-react"
For Atom
:
apm install linter linter-eslint
For PhpStorm
or WebStorm
:
Languages & Frameworks
-> JavaScript
-> choose ECMAScript 6
for JavaScript language version
Preference
-> Plugins
-> click Browse repositories...
-> search ESLint
-> click Install plugin
Preference
-> Languages & Frameworks
-> JavaScript
-> Code Quality Tools
-> ESLint
-> check Enable
For Sublime Text 3
:
SublimeLinter
and SublimeLinter-contrib-eslint
by Package Control
For vim
or neovim
:
Install benekastah/neomake by any plugin manager, such as vim-plug
Add the following lines to ~/.vimrc
(vim
) or ~/.config/nvim/init.vim
(neovim
)
autocmd BufWrite * :Neomake
let g:neomake_javascript_enabled_makers= ['eslint']
" load local eslint in the project root
" modified from https://github.com/mtscout6/syntastic-local-eslint.vim
let s:eslint_path = system('PATH=$(npm bin):$PATH && which eslint')
let g:neomake_javascript_eslint_exe = substitute(s:eslint_path, '^\n*\s*\(.\{-}\)\n*\s*$', '\1', '')
For vscode
:
FAQs
my own ESLint config
The npm package eslint-config-foray1010 receives a total of 68 weekly downloads. As such, eslint-config-foray1010 popularity was classified as not popular.
We found that eslint-config-foray1010 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
Django has updated its security policies to reject AI-generated vulnerability reports that include fabricated or unverifiable content.
Security News
ECMAScript 2025 introduces Iterator Helpers, Set methods, JSON modules, and more in its latest spec update approved by Ecma in June 2025.
Security News
A new Node.js homepage button linking to paid support for EOL versions has sparked a heated discussion among contributors and the wider community.