aboutsummaryrefslogtreecommitdiffstats
path: root/.jshintrc
Commit message (Collapse)AuthorAgeFilesLines
* chore: update .jshintrcRichard Steinmetz2024-05-271-1/+2
| | | | | | | | | | | Changes: - `esversion: 11` We use bundlers so let's use a modern version of js - `maxlen: 120` This should be enforced by linters if at all (the rule is deprected by jshintrc anyway: https://jshint.com/docs/options/#maxlen) - `asi: true` Suppress warnings about missing semicolons (it's 2024 after all) Signed-off-by: Richard Steinmetz <richard@steinmetz.cloud>
* Reduce JSHint errors/warningsMorris Jobke2017-11-061-1/+4
| | | | Signed-off-by: Morris Jobke <hey@morrisjobke.de>
* enable laxbreak option in jshintrc to comply with our coding guide linesArthur Schiwon2014-11-041-0/+1
|
* Files app navigation can now switchVincent Petry2014-05-151-0/+1
| | | | | | | | | - added new OCA.Files namespace for files classes - the sidebar can now switch between views/containers - the trashbin renders in its own container but currently doesn't work due to overrides - added app.js as entry point for JS code (ideally all other files should only contain classes and not trigger anything)
* Merge branch 'master' into jshint-globals-oc-t-nThomas Müller2014-04-071-0/+1
|\ | | | | | | | | Conflicts: .jshintrc
| * reduce code duplication, fix parse error, prevent page reload on hitting ↵Thomas Müller2014-04-071-1/+2
| | | | | | | | enter while changing the display name - refs #8085
* | adding ownCloud globals to jshintrc: OC, t, nThomas Müller2014-04-071-1/+4
|/
* extending javascript line length to 120Thomas Müller2014-04-041-2/+2
| | | | adding xit to globals
* rename config to camelcaseThomas Müller2014-02-271-1/+1
|
* Added .jshintrcVincent Petry2014-01-301-0/+28
- Also fixes a few JSHint warnings in files app - Added "global" comment on top of files app to suppress warning and also inform devs about what globals are use