Skip to content

Commit

Permalink
eslintignore now inside .eslintrc.cjs, which was .eslintrc (config js)
Browse files Browse the repository at this point in the history
  • Loading branch information
duttonw committed Apr 5, 2024
1 parent 19d4df9 commit b23789d
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 9 deletions.
7 changes: 0 additions & 7 deletions .eslintignore

This file was deleted.

18 changes: 16 additions & 2 deletions .eslintrc → .eslintrc.cjs
Original file line number Diff line number Diff line change
@@ -1,12 +1,26 @@
{
module.exports = {
"ignorePatterns": [
"node_modules/",
"dist/",
"builder/",
"!.storybook/",
"storybook-static/",
"binary-repo/",
"lib/"

],
"parser": "@babel/eslint-parser",
"extends": [
"airbnb",
"plugin:json/recommended",
"plugin:jest/recommended",
"plugin:prettier/recommended",
"plugin:storybook/recommended"
"plugin:storybook/recommended",
"plugin:mdx/recommended"
],
"settings": {
"mdx/code-blocks": true,
},
"rules": {
"prettier/prettier": ["error"],
"import/no-extraneous-dependencies": [
Expand Down

0 comments on commit b23789d

Please sign in to comment.