├── .eslintignore ├── .eslintrc.js ├── .github ├── FUNDING.yml └── workflows │ ├── NodeCI.yml │ └── NpmPublish.yml ├── .gitignore ├── .npmrc ├── .vscode └── settings.json ├── LICENSE ├── README.md ├── lib ├── index.js └── vue-specific-rules.js ├── package.json ├── renovate.json ├── scss └── index.js └── tests ├── fixtures └── integrations │ ├── stylelint-config-standard-scss │ ├── .npmrc │ ├── package.json │ ├── src │ │ ├── invalid.vue │ │ └── valid.vue │ └── stylelint.config.js │ └── stylelint │ ├── .npmrc │ ├── package.json │ ├── src │ ├── invalid.vue │ └── valid.vue │ └── stylelint.config.js └── lib └── index.js /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/stylelint-config-standard-vue/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/stylelint-config-standard-vue/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/stylelint-config-standard-vue/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/NodeCI.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/stylelint-config-standard-vue/HEAD/.github/workflows/NodeCI.yml -------------------------------------------------------------------------------- /.github/workflows/NpmPublish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/stylelint-config-standard-vue/HEAD/.github/workflows/NpmPublish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/stylelint-config-standard-vue/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | package-lock=false 2 | -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/stylelint-config-standard-vue/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/stylelint-config-standard-vue/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/stylelint-config-standard-vue/HEAD/README.md -------------------------------------------------------------------------------- /lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/stylelint-config-standard-vue/HEAD/lib/index.js -------------------------------------------------------------------------------- /lib/vue-specific-rules.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/stylelint-config-standard-vue/HEAD/lib/vue-specific-rules.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/stylelint-config-standard-vue/HEAD/package.json -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/stylelint-config-standard-vue/HEAD/renovate.json -------------------------------------------------------------------------------- /scss/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/stylelint-config-standard-vue/HEAD/scss/index.js -------------------------------------------------------------------------------- /tests/fixtures/integrations/stylelint-config-standard-scss/.npmrc: -------------------------------------------------------------------------------- 1 | package-lock=false 2 | -------------------------------------------------------------------------------- /tests/fixtures/integrations/stylelint-config-standard-scss/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/stylelint-config-standard-vue/HEAD/tests/fixtures/integrations/stylelint-config-standard-scss/package.json -------------------------------------------------------------------------------- /tests/fixtures/integrations/stylelint-config-standard-scss/src/invalid.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/stylelint-config-standard-vue/HEAD/tests/fixtures/integrations/stylelint-config-standard-scss/src/invalid.vue -------------------------------------------------------------------------------- /tests/fixtures/integrations/stylelint-config-standard-scss/src/valid.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/stylelint-config-standard-vue/HEAD/tests/fixtures/integrations/stylelint-config-standard-scss/src/valid.vue -------------------------------------------------------------------------------- /tests/fixtures/integrations/stylelint-config-standard-scss/stylelint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/stylelint-config-standard-vue/HEAD/tests/fixtures/integrations/stylelint-config-standard-scss/stylelint.config.js -------------------------------------------------------------------------------- /tests/fixtures/integrations/stylelint/.npmrc: -------------------------------------------------------------------------------- 1 | package-lock=false 2 | -------------------------------------------------------------------------------- /tests/fixtures/integrations/stylelint/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/stylelint-config-standard-vue/HEAD/tests/fixtures/integrations/stylelint/package.json -------------------------------------------------------------------------------- /tests/fixtures/integrations/stylelint/src/invalid.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/stylelint-config-standard-vue/HEAD/tests/fixtures/integrations/stylelint/src/invalid.vue -------------------------------------------------------------------------------- /tests/fixtures/integrations/stylelint/src/valid.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/stylelint-config-standard-vue/HEAD/tests/fixtures/integrations/stylelint/src/valid.vue -------------------------------------------------------------------------------- /tests/fixtures/integrations/stylelint/stylelint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/stylelint-config-standard-vue/HEAD/tests/fixtures/integrations/stylelint/stylelint.config.js -------------------------------------------------------------------------------- /tests/lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/stylelint-config-standard-vue/HEAD/tests/lib/index.js --------------------------------------------------------------------------------