├── .editorconfig ├── .github ├── dependabot.yml └── workflows │ ├── codeql-analysis.yml │ └── test.yml ├── .gitignore ├── .prettierignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── __tests__ └── index.js ├── index.js ├── jest-setup.js ├── package.json ├── utils └── declarationValueIndex.js └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristerkari/stylelint-high-performance-animation/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristerkari/stylelint-high-performance-animation/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristerkari/stylelint-high-performance-animation/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristerkari/stylelint-high-performance-animation/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristerkari/stylelint-high-performance-animation/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristerkari/stylelint-high-performance-animation/HEAD/.prettierignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristerkari/stylelint-high-performance-animation/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristerkari/stylelint-high-performance-animation/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristerkari/stylelint-high-performance-animation/HEAD/README.md -------------------------------------------------------------------------------- /__tests__/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristerkari/stylelint-high-performance-animation/HEAD/__tests__/index.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristerkari/stylelint-high-performance-animation/HEAD/index.js -------------------------------------------------------------------------------- /jest-setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristerkari/stylelint-high-performance-animation/HEAD/jest-setup.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristerkari/stylelint-high-performance-animation/HEAD/package.json -------------------------------------------------------------------------------- /utils/declarationValueIndex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristerkari/stylelint-high-performance-animation/HEAD/utils/declarationValueIndex.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristerkari/stylelint-high-performance-animation/HEAD/yarn.lock --------------------------------------------------------------------------------