├── .editorconfig ├── .gitattributes ├── .gitignore ├── .travis.yml ├── fixture-legacy.js ├── fixture.html ├── fixture.js ├── index.js ├── license ├── package.json ├── readme.md └── screenshot.gif /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/atom-fixmyjs/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/atom-fixmyjs/HEAD/.travis.yml -------------------------------------------------------------------------------- /fixture-legacy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/atom-fixmyjs/HEAD/fixture-legacy.js -------------------------------------------------------------------------------- /fixture.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/atom-fixmyjs/HEAD/fixture.html -------------------------------------------------------------------------------- /fixture.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/atom-fixmyjs/HEAD/fixture.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/atom-fixmyjs/HEAD/index.js -------------------------------------------------------------------------------- /license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/atom-fixmyjs/HEAD/license -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/atom-fixmyjs/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/atom-fixmyjs/HEAD/readme.md -------------------------------------------------------------------------------- /screenshot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/atom-fixmyjs/HEAD/screenshot.gif --------------------------------------------------------------------------------