├── .gitignore ├── .travis.yml ├── bin.js ├── collaborators.md ├── index.js ├── package.json ├── rc └── esformatter.json ├── readme.md └── test ├── es6.js ├── failing ├── jsx.js ├── multiline.js ├── obfuscated-files │ └── standard-format-torture.js ├── obfuscated.js └── singleline.js ├── index.js ├── jsx.js ├── multiline.js ├── shebang.js ├── singleline.js ├── test-files └── test.js └── testFile.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/standard-format/HEAD/.travis.yml -------------------------------------------------------------------------------- /bin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/standard-format/HEAD/bin.js -------------------------------------------------------------------------------- /collaborators.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/standard-format/HEAD/collaborators.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/standard-format/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/standard-format/HEAD/package.json -------------------------------------------------------------------------------- /rc/esformatter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/standard-format/HEAD/rc/esformatter.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/standard-format/HEAD/readme.md -------------------------------------------------------------------------------- /test/es6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/standard-format/HEAD/test/es6.js -------------------------------------------------------------------------------- /test/failing/jsx.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/standard-format/HEAD/test/failing/jsx.js -------------------------------------------------------------------------------- /test/failing/multiline.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/standard-format/HEAD/test/failing/multiline.js -------------------------------------------------------------------------------- /test/failing/obfuscated-files/standard-format-torture.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/standard-format/HEAD/test/failing/obfuscated-files/standard-format-torture.js -------------------------------------------------------------------------------- /test/failing/obfuscated.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/standard-format/HEAD/test/failing/obfuscated.js -------------------------------------------------------------------------------- /test/failing/singleline.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/standard-format/HEAD/test/failing/singleline.js -------------------------------------------------------------------------------- /test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/standard-format/HEAD/test/index.js -------------------------------------------------------------------------------- /test/jsx.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/standard-format/HEAD/test/jsx.js -------------------------------------------------------------------------------- /test/multiline.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/standard-format/HEAD/test/multiline.js -------------------------------------------------------------------------------- /test/shebang.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/standard-format/HEAD/test/shebang.js -------------------------------------------------------------------------------- /test/singleline.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/standard-format/HEAD/test/singleline.js -------------------------------------------------------------------------------- /test/test-files/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/standard-format/HEAD/test/test-files/test.js -------------------------------------------------------------------------------- /test/testFile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max-mapper/standard-format/HEAD/test/testFile.js --------------------------------------------------------------------------------