summaryrefslogtreecommitdiffstats
path: root/.jshintrc
blob: 19ce0606297c384b1ee9999fe0db9d68e60badfd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{
	"camelcase": true,
	"eqeqeq": true,
	"immed": true,
	"latedef": false,
	"noarg": true,
	"nonbsp": true,
	"undef": true,
	"unused": true,
	"trailing": true,
	"maxparams": 5,
	"curly": true,
	"jquery": true,
	"maxlen": 120,
	"indent": 4,
	"browser": true,
	"laxbreak": true,
	"globals": {
		"console": true,
		"it": true,
		"xit": true,
		"expect": true,
		"describe": true,
		"beforeEach": true,
		"afterEach": true,
		"sinon": true,
		"fakeServer": true,
		"_": true,
		"OC": true,
		"OCA": true,
		"OCP": true,
		"t": true,
		"n": true,
		"escapeHTML": true,
		"Promise": true
	}
}
ffero General Public License, version 3, * as published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Affero General Public License for more details. * * You should have received a copy of the GNU Affero General Public License, version 3, * along with this program. If not, see <http://www.gnu.org/licenses/> * */ // We only can count up. The 4. digit is only for the internal patchlevel to trigger DB upgrades // between betas, final and RCs. This is _not_ the public version number. Reset minor/patchlevel // when updating major/minor version number. $OC_Version = array(12, 0, 0, 23); // The human readable string $OC_VersionString = '12.0 RC1'; $OC_VersionCanBeUpgradedFrom = [ 'nextcloud' => [ '11.0' => true, '12.0' => true, ], 'owncloud' => [ '10.0.0.12' => true, ], ]; // default Nextcloud channel $OC_Channel = 'git'; // The build number $OC_Build = ''; // Vendor of this package $vendor = 'nextcloud';