├── .coffeelintignore ├── .github ├── no-response.yml └── workflows │ └── ci.yml ├── .gitignore ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE.md ├── LICENSE.md ├── PULL_REQUEST_TEMPLATE.md ├── README.md ├── coffeelint.json ├── lib ├── autosave.js └── controls.js ├── package.json └── spec ├── async-spec-helpers.js ├── autosave-spec.js └── fixtures ├── sample.coffee └── sample.js /.coffeelintignore: -------------------------------------------------------------------------------- 1 | spec/fixtures 2 | -------------------------------------------------------------------------------- /.github/no-response.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/autosave/HEAD/.github/no-response.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/autosave/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/autosave/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/autosave/HEAD/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/autosave/HEAD/LICENSE.md -------------------------------------------------------------------------------- /PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/autosave/HEAD/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/autosave/HEAD/README.md -------------------------------------------------------------------------------- /coffeelint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/autosave/HEAD/coffeelint.json -------------------------------------------------------------------------------- /lib/autosave.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/autosave/HEAD/lib/autosave.js -------------------------------------------------------------------------------- /lib/controls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/autosave/HEAD/lib/controls.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/autosave/HEAD/package.json -------------------------------------------------------------------------------- /spec/async-spec-helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/autosave/HEAD/spec/async-spec-helpers.js -------------------------------------------------------------------------------- /spec/autosave-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/autosave/HEAD/spec/autosave-spec.js -------------------------------------------------------------------------------- /spec/fixtures/sample.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/autosave/HEAD/spec/fixtures/sample.coffee -------------------------------------------------------------------------------- /spec/fixtures/sample.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/autosave/HEAD/spec/fixtures/sample.js --------------------------------------------------------------------------------