├── .github └── workflows │ └── check.yml ├── .gitignore ├── .vscode ├── extensions.json ├── launch.json ├── settings.json └── tasks.json ├── .vscodeignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── babel.config.js ├── demo.gif ├── jest.config.js ├── package.json ├── src ├── StycoCodeActionProvider.ts ├── command.ts ├── extension.ts ├── test │ └── parsing.test.ts └── util │ ├── generateImportStatement.ts │ ├── generateStyledComponent.ts │ └── parseDocument.ts ├── styco_logo.png ├── tsconfig.json ├── tslint.json ├── webpack.config.js └── yarn.lock /.github/workflows/check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agreon/styco/HEAD/.github/workflows/check.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agreon/styco/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agreon/styco/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agreon/styco/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agreon/styco/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agreon/styco/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /.vscodeignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agreon/styco/HEAD/.vscodeignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agreon/styco/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agreon/styco/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agreon/styco/HEAD/README.md -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agreon/styco/HEAD/babel.config.js -------------------------------------------------------------------------------- /demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agreon/styco/HEAD/demo.gif -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agreon/styco/HEAD/jest.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agreon/styco/HEAD/package.json -------------------------------------------------------------------------------- /src/StycoCodeActionProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agreon/styco/HEAD/src/StycoCodeActionProvider.ts -------------------------------------------------------------------------------- /src/command.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agreon/styco/HEAD/src/command.ts -------------------------------------------------------------------------------- /src/extension.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agreon/styco/HEAD/src/extension.ts -------------------------------------------------------------------------------- /src/test/parsing.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agreon/styco/HEAD/src/test/parsing.test.ts -------------------------------------------------------------------------------- /src/util/generateImportStatement.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agreon/styco/HEAD/src/util/generateImportStatement.ts -------------------------------------------------------------------------------- /src/util/generateStyledComponent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agreon/styco/HEAD/src/util/generateStyledComponent.ts -------------------------------------------------------------------------------- /src/util/parseDocument.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agreon/styco/HEAD/src/util/parseDocument.ts -------------------------------------------------------------------------------- /styco_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agreon/styco/HEAD/styco_logo.png -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agreon/styco/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agreon/styco/HEAD/tslint.json -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agreon/styco/HEAD/webpack.config.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Agreon/styco/HEAD/yarn.lock --------------------------------------------------------------------------------