├── .gitignore ├── .prettierrc.yaml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── grammars └── svelte.cson ├── lib ├── config.js ├── diagnostic.js ├── main.js └── util.js ├── package.json ├── pnpm-lock.yaml └── settings └── language-svelte.cson /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | npm-debug.log 3 | node_modules 4 | -------------------------------------------------------------------------------- /.prettierrc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveltejs/svelte-atom/HEAD/.prettierrc.yaml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveltejs/svelte-atom/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveltejs/svelte-atom/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveltejs/svelte-atom/HEAD/README.md -------------------------------------------------------------------------------- /grammars/svelte.cson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveltejs/svelte-atom/HEAD/grammars/svelte.cson -------------------------------------------------------------------------------- /lib/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveltejs/svelte-atom/HEAD/lib/config.js -------------------------------------------------------------------------------- /lib/diagnostic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveltejs/svelte-atom/HEAD/lib/diagnostic.js -------------------------------------------------------------------------------- /lib/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveltejs/svelte-atom/HEAD/lib/main.js -------------------------------------------------------------------------------- /lib/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveltejs/svelte-atom/HEAD/lib/util.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveltejs/svelte-atom/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveltejs/svelte-atom/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /settings/language-svelte.cson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sveltejs/svelte-atom/HEAD/settings/language-svelte.cson --------------------------------------------------------------------------------