├── .eslintignore ├── .eslintrc.json ├── .gitignore ├── .npmignore ├── .vscode └── settings.json ├── LICENSE.md ├── README.md ├── circle.yml ├── docs ├── logo.gvdesign └── logo.svg ├── lib ├── index.js ├── settings.js └── utils.js ├── package.json ├── test ├── .eslintrc ├── __snapshots__ │ └── main.spec.js.snap ├── fixtures │ ├── .eslintrc │ ├── .vscode │ │ └── settings.json │ ├── __package.json │ ├── big │ │ └── __package.json │ ├── big2.bad.json │ ├── complex.1.json │ ├── complex.json │ ├── demo.fixed.json │ ├── demo.invalid.json │ ├── demo.json │ ├── demo.missing-commas.json │ ├── foo.json │ ├── huge.bad.json │ ├── ignore-this-file.json │ ├── jsdemo.fixed.js │ ├── jsdemo.invalid.js │ ├── jsdemo.js │ ├── package-lock.json │ ├── sort-order │ │ └── __package.json │ └── tsconfig.json └── main.spec.js └── yarn.lock /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuceb/eslint-plugin-json-format/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuceb/eslint-plugin-json-format/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | *.tgz 3 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | /* 2 | !lib/ 3 | -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuceb/eslint-plugin-json-format/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuceb/eslint-plugin-json-format/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuceb/eslint-plugin-json-format/HEAD/README.md -------------------------------------------------------------------------------- /circle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuceb/eslint-plugin-json-format/HEAD/circle.yml -------------------------------------------------------------------------------- /docs/logo.gvdesign: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuceb/eslint-plugin-json-format/HEAD/docs/logo.gvdesign -------------------------------------------------------------------------------- /docs/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuceb/eslint-plugin-json-format/HEAD/docs/logo.svg -------------------------------------------------------------------------------- /lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuceb/eslint-plugin-json-format/HEAD/lib/index.js -------------------------------------------------------------------------------- /lib/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuceb/eslint-plugin-json-format/HEAD/lib/settings.js -------------------------------------------------------------------------------- /lib/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuceb/eslint-plugin-json-format/HEAD/lib/utils.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuceb/eslint-plugin-json-format/HEAD/package.json -------------------------------------------------------------------------------- /test/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuceb/eslint-plugin-json-format/HEAD/test/.eslintrc -------------------------------------------------------------------------------- /test/__snapshots__/main.spec.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuceb/eslint-plugin-json-format/HEAD/test/__snapshots__/main.spec.js.snap -------------------------------------------------------------------------------- /test/fixtures/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuceb/eslint-plugin-json-format/HEAD/test/fixtures/.eslintrc -------------------------------------------------------------------------------- /test/fixtures/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuceb/eslint-plugin-json-format/HEAD/test/fixtures/.vscode/settings.json -------------------------------------------------------------------------------- /test/fixtures/__package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuceb/eslint-plugin-json-format/HEAD/test/fixtures/__package.json -------------------------------------------------------------------------------- /test/fixtures/big/__package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuceb/eslint-plugin-json-format/HEAD/test/fixtures/big/__package.json -------------------------------------------------------------------------------- /test/fixtures/big2.bad.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuceb/eslint-plugin-json-format/HEAD/test/fixtures/big2.bad.json -------------------------------------------------------------------------------- /test/fixtures/complex.1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuceb/eslint-plugin-json-format/HEAD/test/fixtures/complex.1.json -------------------------------------------------------------------------------- /test/fixtures/complex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuceb/eslint-plugin-json-format/HEAD/test/fixtures/complex.json -------------------------------------------------------------------------------- /test/fixtures/demo.fixed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuceb/eslint-plugin-json-format/HEAD/test/fixtures/demo.fixed.json -------------------------------------------------------------------------------- /test/fixtures/demo.invalid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuceb/eslint-plugin-json-format/HEAD/test/fixtures/demo.invalid.json -------------------------------------------------------------------------------- /test/fixtures/demo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuceb/eslint-plugin-json-format/HEAD/test/fixtures/demo.json -------------------------------------------------------------------------------- /test/fixtures/demo.missing-commas.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuceb/eslint-plugin-json-format/HEAD/test/fixtures/demo.missing-commas.json -------------------------------------------------------------------------------- /test/fixtures/foo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuceb/eslint-plugin-json-format/HEAD/test/fixtures/foo.json -------------------------------------------------------------------------------- /test/fixtures/huge.bad.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuceb/eslint-plugin-json-format/HEAD/test/fixtures/huge.bad.json -------------------------------------------------------------------------------- /test/fixtures/ignore-this-file.json: -------------------------------------------------------------------------------- 1 | { 2 | "foo": "bar" 3 | } 4 | -------------------------------------------------------------------------------- /test/fixtures/jsdemo.fixed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuceb/eslint-plugin-json-format/HEAD/test/fixtures/jsdemo.fixed.js -------------------------------------------------------------------------------- /test/fixtures/jsdemo.invalid.js: -------------------------------------------------------------------------------- 1 | >> 2 | -------------------------------------------------------------------------------- /test/fixtures/jsdemo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuceb/eslint-plugin-json-format/HEAD/test/fixtures/jsdemo.js -------------------------------------------------------------------------------- /test/fixtures/package-lock.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /test/fixtures/sort-order/__package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuceb/eslint-plugin-json-format/HEAD/test/fixtures/sort-order/__package.json -------------------------------------------------------------------------------- /test/fixtures/tsconfig.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/main.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuceb/eslint-plugin-json-format/HEAD/test/main.spec.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kuceb/eslint-plugin-json-format/HEAD/yarn.lock --------------------------------------------------------------------------------