├── .github └── workflows │ └── add-to-project.yaml ├── .gitignore ├── .npmignore ├── .npmrc ├── .travis.yml ├── LICENSE ├── README.md ├── eslintrc.json ├── index.js ├── package.json └── test ├── basic.js └── validate-config.js /.github/workflows/add-to-project.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standard/eslint-config-standard-react/HEAD/.github/workflows/add-to-project.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules/ 2 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | .travis.yml 2 | test/ 3 | -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | package-lock=false 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standard/eslint-config-standard-react/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standard/eslint-config-standard-react/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standard/eslint-config-standard-react/HEAD/README.md -------------------------------------------------------------------------------- /eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standard/eslint-config-standard-react/HEAD/eslintrc.json -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standard/eslint-config-standard-react/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standard/eslint-config-standard-react/HEAD/package.json -------------------------------------------------------------------------------- /test/basic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standard/eslint-config-standard-react/HEAD/test/basic.js -------------------------------------------------------------------------------- /test/validate-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/standard/eslint-config-standard-react/HEAD/test/validate-config.js --------------------------------------------------------------------------------