Phanx / eslint-plugin-json-as-js

Quick POC of linting JSON with ESLint.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Example config file:

module.exports = {
	overrides: [{
		files: ["**/locales/en-US/*.json"],
		plugins: ["json-as-js"],
		processor: "json-as-js/.json",
		rules: {
			"json-as-js/no-empty-strings": "error",
			"sort-keys": "off",
		},
	}],
	root: true,
	rules: {
		"sort-keys": "error",
	},
}

About

Quick POC of linting JSON with ESLint.


Languages

Language:JavaScript 100.0%