├── .eslintignore ├── .gitignore ├── .prettierignore ├── .travis.yml ├── LICENSE ├── README.md ├── index.js ├── package.json ├── test ├── fixtures │ ├── .eslintrc │ ├── .eslintrc-babel │ ├── fixable.js │ ├── fixed.js │ ├── ignored.js │ ├── modules.js │ ├── node_modules │ │ └── mod │ │ │ └── index.js │ ├── undeclared.js │ └── use-strict.js └── test.js └── yarn.lock /.eslintignore: -------------------------------------------------------------------------------- 1 | test/fixtures/ignored.js 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | fixtures 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrySound/rollup-plugin-eslint/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrySound/rollup-plugin-eslint/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrySound/rollup-plugin-eslint/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrySound/rollup-plugin-eslint/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrySound/rollup-plugin-eslint/HEAD/package.json -------------------------------------------------------------------------------- /test/fixtures/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrySound/rollup-plugin-eslint/HEAD/test/fixtures/.eslintrc -------------------------------------------------------------------------------- /test/fixtures/.eslintrc-babel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrySound/rollup-plugin-eslint/HEAD/test/fixtures/.eslintrc-babel -------------------------------------------------------------------------------- /test/fixtures/fixable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrySound/rollup-plugin-eslint/HEAD/test/fixtures/fixable.js -------------------------------------------------------------------------------- /test/fixtures/fixed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrySound/rollup-plugin-eslint/HEAD/test/fixtures/fixed.js -------------------------------------------------------------------------------- /test/fixtures/ignored.js: -------------------------------------------------------------------------------- 1 | (function () { 2 | 3 | void 0; 4 | 5 | }()); 6 | -------------------------------------------------------------------------------- /test/fixtures/modules.js: -------------------------------------------------------------------------------- 1 | import 'mod'; 2 | -------------------------------------------------------------------------------- /test/fixtures/node_modules/mod/index.js: -------------------------------------------------------------------------------- 1 | const a = 1; 2 | -------------------------------------------------------------------------------- /test/fixtures/undeclared.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | (function () { 3 | 4 | x = 0; 5 | 6 | }()); 7 | -------------------------------------------------------------------------------- /test/fixtures/use-strict.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrySound/rollup-plugin-eslint/HEAD/test/fixtures/use-strict.js -------------------------------------------------------------------------------- /test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrySound/rollup-plugin-eslint/HEAD/test/test.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrySound/rollup-plugin-eslint/HEAD/yarn.lock --------------------------------------------------------------------------------