├── .github ├── no-response.yml └── workflows │ └── ci.yml ├── .gitignore ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE.md ├── LICENSE.md ├── PULL_REQUEST_TEMPLATE.md ├── README.md ├── appveyor.yml ├── coffeelint.json ├── grammars ├── javascript.cson ├── jsdoc.cson ├── regular expression replacement (javascript).cson ├── regular expressions (javascript).cson ├── tree-sitter-javascript.cson ├── tree-sitter-jsdoc.cson └── tree-sitter-regex.cson ├── lib └── main.js ├── package.json ├── settings └── language-javascript.cson ├── snippets └── language-javascript.cson └── spec ├── javascript-spec.coffee ├── jsdoc-spec.coffee └── regular-expression-replacement-spec.coffee /.github/no-response.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/language-javascript/HEAD/.github/no-response.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/language-javascript/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | package-lock.json 3 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/language-javascript/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/language-javascript/HEAD/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/language-javascript/HEAD/LICENSE.md -------------------------------------------------------------------------------- /PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/language-javascript/HEAD/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/language-javascript/HEAD/README.md -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/language-javascript/HEAD/appveyor.yml -------------------------------------------------------------------------------- /coffeelint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/language-javascript/HEAD/coffeelint.json -------------------------------------------------------------------------------- /grammars/javascript.cson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/language-javascript/HEAD/grammars/javascript.cson -------------------------------------------------------------------------------- /grammars/jsdoc.cson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/language-javascript/HEAD/grammars/jsdoc.cson -------------------------------------------------------------------------------- /grammars/regular expression replacement (javascript).cson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/language-javascript/HEAD/grammars/regular expression replacement (javascript).cson -------------------------------------------------------------------------------- /grammars/regular expressions (javascript).cson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/language-javascript/HEAD/grammars/regular expressions (javascript).cson -------------------------------------------------------------------------------- /grammars/tree-sitter-javascript.cson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/language-javascript/HEAD/grammars/tree-sitter-javascript.cson -------------------------------------------------------------------------------- /grammars/tree-sitter-jsdoc.cson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/language-javascript/HEAD/grammars/tree-sitter-jsdoc.cson -------------------------------------------------------------------------------- /grammars/tree-sitter-regex.cson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/language-javascript/HEAD/grammars/tree-sitter-regex.cson -------------------------------------------------------------------------------- /lib/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/language-javascript/HEAD/lib/main.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/language-javascript/HEAD/package.json -------------------------------------------------------------------------------- /settings/language-javascript.cson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/language-javascript/HEAD/settings/language-javascript.cson -------------------------------------------------------------------------------- /snippets/language-javascript.cson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/language-javascript/HEAD/snippets/language-javascript.cson -------------------------------------------------------------------------------- /spec/javascript-spec.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/language-javascript/HEAD/spec/javascript-spec.coffee -------------------------------------------------------------------------------- /spec/jsdoc-spec.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/language-javascript/HEAD/spec/jsdoc-spec.coffee -------------------------------------------------------------------------------- /spec/regular-expression-replacement-spec.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/language-javascript/HEAD/spec/regular-expression-replacement-spec.coffee --------------------------------------------------------------------------------