├── .editorconfig ├── .eslintrc.yml ├── .gitignore ├── .npmignore ├── .travis.yml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── domain.js ├── images └── brackets.png ├── main.js ├── nls ├── de │ └── strings.js ├── root │ └── strings.js └── strings.js ├── package.json ├── strings.js ├── styles └── styles.css └── test ├── equal-spaces.txt ├── equal-tabs.txt ├── none.txt ├── spaces.txt └── tabs.txt /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirse/brackets-detect-indentation/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirse/brackets-detect-indentation/HEAD/.eslintrc.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | *.tgz 3 | *.zip 4 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirse/brackets-detect-indentation/HEAD/.npmignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirse/brackets-detect-indentation/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirse/brackets-detect-indentation/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirse/brackets-detect-indentation/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirse/brackets-detect-indentation/HEAD/README.md -------------------------------------------------------------------------------- /domain.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirse/brackets-detect-indentation/HEAD/domain.js -------------------------------------------------------------------------------- /images/brackets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirse/brackets-detect-indentation/HEAD/images/brackets.png -------------------------------------------------------------------------------- /main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirse/brackets-detect-indentation/HEAD/main.js -------------------------------------------------------------------------------- /nls/de/strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirse/brackets-detect-indentation/HEAD/nls/de/strings.js -------------------------------------------------------------------------------- /nls/root/strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirse/brackets-detect-indentation/HEAD/nls/root/strings.js -------------------------------------------------------------------------------- /nls/strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirse/brackets-detect-indentation/HEAD/nls/strings.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirse/brackets-detect-indentation/HEAD/package.json -------------------------------------------------------------------------------- /strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirse/brackets-detect-indentation/HEAD/strings.js -------------------------------------------------------------------------------- /styles/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirse/brackets-detect-indentation/HEAD/styles/styles.css -------------------------------------------------------------------------------- /test/equal-spaces.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirse/brackets-detect-indentation/HEAD/test/equal-spaces.txt -------------------------------------------------------------------------------- /test/equal-tabs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirse/brackets-detect-indentation/HEAD/test/equal-tabs.txt -------------------------------------------------------------------------------- /test/none.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirse/brackets-detect-indentation/HEAD/test/none.txt -------------------------------------------------------------------------------- /test/spaces.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirse/brackets-detect-indentation/HEAD/test/spaces.txt -------------------------------------------------------------------------------- /test/tabs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hirse/brackets-detect-indentation/HEAD/test/tabs.txt --------------------------------------------------------------------------------