File: config.rb

package info (click to toggle)
ruby-client-side-validations 23.1.0-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 272 kB
  • sloc: ruby: 788; javascript: 671; makefile: 2
file content (13 lines) | stat: -rw-r--r-- 296 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
# frozen_string_literal: true

module ClientSideValidations
  module Config
    class << self
      attr_accessor :disabled_validators, :number_format_with_locale, :root_path
    end

    self.disabled_validators = []
    self.number_format_with_locale = false
    self.root_path = nil
  end
end