├── .editorconfig ├── .gitattributes ├── .github └── workflows │ └── nodejs.yml ├── .gitignore ├── .npmrc ├── CHANGELOG.md ├── LICENSE ├── README.md ├── eslint.config.js ├── example ├── custom-config │ ├── eslintrc-config.json │ └── flat-config.js ├── demo │ ├── .eslintrc │ ├── console-log-without-semicolon.js │ ├── eslint.config.js │ └── line-too-long.js ├── eslint-8-config.js ├── eslint-8-flat-config.js ├── eslint-9-config.js ├── eslint-9-eslintrc-config.js ├── fail.js ├── fix.js ├── format.js ├── quiet.js ├── result.js └── watch.js ├── gulpfile.js ├── lib ├── eslint.d.ts ├── gulp-eslint-new.d.ts ├── gulp-eslint-new.js └── util.js ├── package.json ├── test ├── config │ ├── eslintrc-config.js │ ├── flat-config.js │ ├── package.json │ └── ts-config.ts ├── custom-rules │ └── ok.js ├── fail.spec.js ├── fix.spec.js ├── fixtures │ ├── .eslintrc │ ├── eslint.config.js │ ├── eslintignore │ │ └── .eslintignore │ └── semi │ │ └── .eslintrc.js ├── format.spec.js ├── formatter │ ├── async-formatter.js │ ├── custom-formatter.js │ └── package.json ├── import.spec.js ├── linting.spec.js ├── organize-options.spec.js ├── result.spec.js ├── test-util.js ├── ts-defs-test.ts ├── tsconfig.json └── util.spec.js └── tsconfig.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/origin-1/gulp-eslint-new/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text eol=lf 2 | -------------------------------------------------------------------------------- /.github/workflows/nodejs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/origin-1/gulp-eslint-new/HEAD/.github/workflows/nodejs.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/origin-1/gulp-eslint-new/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/origin-1/gulp-eslint-new/HEAD/.npmrc -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/origin-1/gulp-eslint-new/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/origin-1/gulp-eslint-new/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/origin-1/gulp-eslint-new/HEAD/README.md -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/origin-1/gulp-eslint-new/HEAD/eslint.config.js -------------------------------------------------------------------------------- /example/custom-config/eslintrc-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/origin-1/gulp-eslint-new/HEAD/example/custom-config/eslintrc-config.json -------------------------------------------------------------------------------- /example/custom-config/flat-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/origin-1/gulp-eslint-new/HEAD/example/custom-config/flat-config.js -------------------------------------------------------------------------------- /example/demo/.eslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "root": true 3 | } 4 | -------------------------------------------------------------------------------- /example/demo/console-log-without-semicolon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/origin-1/gulp-eslint-new/HEAD/example/demo/console-log-without-semicolon.js -------------------------------------------------------------------------------- /example/demo/eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/origin-1/gulp-eslint-new/HEAD/example/demo/eslint.config.js -------------------------------------------------------------------------------- /example/demo/line-too-long.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/origin-1/gulp-eslint-new/HEAD/example/demo/line-too-long.js -------------------------------------------------------------------------------- /example/eslint-8-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/origin-1/gulp-eslint-new/HEAD/example/eslint-8-config.js -------------------------------------------------------------------------------- /example/eslint-8-flat-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/origin-1/gulp-eslint-new/HEAD/example/eslint-8-flat-config.js -------------------------------------------------------------------------------- /example/eslint-9-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/origin-1/gulp-eslint-new/HEAD/example/eslint-9-config.js -------------------------------------------------------------------------------- /example/eslint-9-eslintrc-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/origin-1/gulp-eslint-new/HEAD/example/eslint-9-eslintrc-config.js -------------------------------------------------------------------------------- /example/fail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/origin-1/gulp-eslint-new/HEAD/example/fail.js -------------------------------------------------------------------------------- /example/fix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/origin-1/gulp-eslint-new/HEAD/example/fix.js -------------------------------------------------------------------------------- /example/format.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/origin-1/gulp-eslint-new/HEAD/example/format.js -------------------------------------------------------------------------------- /example/quiet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/origin-1/gulp-eslint-new/HEAD/example/quiet.js -------------------------------------------------------------------------------- /example/result.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/origin-1/gulp-eslint-new/HEAD/example/result.js -------------------------------------------------------------------------------- /example/watch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/origin-1/gulp-eslint-new/HEAD/example/watch.js -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/origin-1/gulp-eslint-new/HEAD/gulpfile.js -------------------------------------------------------------------------------- /lib/eslint.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/origin-1/gulp-eslint-new/HEAD/lib/eslint.d.ts -------------------------------------------------------------------------------- /lib/gulp-eslint-new.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/origin-1/gulp-eslint-new/HEAD/lib/gulp-eslint-new.d.ts -------------------------------------------------------------------------------- /lib/gulp-eslint-new.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/origin-1/gulp-eslint-new/HEAD/lib/gulp-eslint-new.js -------------------------------------------------------------------------------- /lib/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/origin-1/gulp-eslint-new/HEAD/lib/util.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/origin-1/gulp-eslint-new/HEAD/package.json -------------------------------------------------------------------------------- /test/config/eslintrc-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/origin-1/gulp-eslint-new/HEAD/test/config/eslintrc-config.js -------------------------------------------------------------------------------- /test/config/flat-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/origin-1/gulp-eslint-new/HEAD/test/config/flat-config.js -------------------------------------------------------------------------------- /test/config/package.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /test/config/ts-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/origin-1/gulp-eslint-new/HEAD/test/config/ts-config.ts -------------------------------------------------------------------------------- /test/custom-rules/ok.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/origin-1/gulp-eslint-new/HEAD/test/custom-rules/ok.js -------------------------------------------------------------------------------- /test/fail.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/origin-1/gulp-eslint-new/HEAD/test/fail.spec.js -------------------------------------------------------------------------------- /test/fix.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/origin-1/gulp-eslint-new/HEAD/test/fix.spec.js -------------------------------------------------------------------------------- /test/fixtures/.eslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "root": true 3 | } 4 | -------------------------------------------------------------------------------- /test/fixtures/eslint.config.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = { }; 4 | -------------------------------------------------------------------------------- /test/fixtures/eslintignore/.eslintignore: -------------------------------------------------------------------------------- 1 | **/ignored.js 2 | !**/node_modules/* 3 | -------------------------------------------------------------------------------- /test/fixtures/semi/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/origin-1/gulp-eslint-new/HEAD/test/fixtures/semi/.eslintrc.js -------------------------------------------------------------------------------- /test/format.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/origin-1/gulp-eslint-new/HEAD/test/format.spec.js -------------------------------------------------------------------------------- /test/formatter/async-formatter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/origin-1/gulp-eslint-new/HEAD/test/formatter/async-formatter.js -------------------------------------------------------------------------------- /test/formatter/custom-formatter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/origin-1/gulp-eslint-new/HEAD/test/formatter/custom-formatter.js -------------------------------------------------------------------------------- /test/formatter/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "main": "custom-formatter.js" 3 | } 4 | -------------------------------------------------------------------------------- /test/import.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/origin-1/gulp-eslint-new/HEAD/test/import.spec.js -------------------------------------------------------------------------------- /test/linting.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/origin-1/gulp-eslint-new/HEAD/test/linting.spec.js -------------------------------------------------------------------------------- /test/organize-options.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/origin-1/gulp-eslint-new/HEAD/test/organize-options.spec.js -------------------------------------------------------------------------------- /test/result.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/origin-1/gulp-eslint-new/HEAD/test/result.spec.js -------------------------------------------------------------------------------- /test/test-util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/origin-1/gulp-eslint-new/HEAD/test/test-util.js -------------------------------------------------------------------------------- /test/ts-defs-test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/origin-1/gulp-eslint-new/HEAD/test/ts-defs-test.ts -------------------------------------------------------------------------------- /test/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/origin-1/gulp-eslint-new/HEAD/test/tsconfig.json -------------------------------------------------------------------------------- /test/util.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/origin-1/gulp-eslint-new/HEAD/test/util.spec.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/origin-1/gulp-eslint-new/HEAD/tsconfig.json --------------------------------------------------------------------------------