@ionic/swiftlint-config
Version:
SwiftLint config for Ionic and Capacitor
26 lines (25 loc) • 584 B
JavaScript
module.exports = {
excluded: [
'${PWD}/node_modules',
'${PWD}/ios/Pods',
'${PWD}/example-app',
],
opt_in_rules: [
'implicitly_unwrapped_optional',
'file_name_no_space',
'force_unwrapping',
'function_default_parameter_at_end',
'lower_acl_than_parent',
'modifier_order',
'overridden_super_call',
'unowned_variable_capture',
'unused_import',
],
line_length: {
'warning': 150,
'ignores_function_declarations': true,
'ignores_comments': true,
'ignores_interpolated_strings': true,
'ignores_urls': true,
},
};